mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-02 09:46:06 +00:00
Removed yet another pair of stray bounds for Send + Sync
. This time on keys
This commit is contained in:
parent
0ba1072c67
commit
0696ed8c3b
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ pub trait QueryStorageMassOps<DB: Database> {
|
||||||
fn sweep(&self, db: &DB, strategy: SweepStrategy);
|
fn sweep(&self, db: &DB, strategy: SweepStrategy);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait DatabaseKey<DB>: Clone + Debug + Eq + Hash + Send + Sync {
|
pub trait DatabaseKey<DB>: Clone + Debug + Eq + Hash {
|
||||||
/// Returns true if the value of this query may have changed since
|
/// Returns true if the value of this query may have changed since
|
||||||
/// the given revision.
|
/// the given revision.
|
||||||
fn maybe_changed_since(&self, db: &DB, revision: Revision) -> bool;
|
fn maybe_changed_since(&self, db: &DB, revision: Revision) -> bool;
|
||||||
|
|
Loading…
Reference in a new issue