From 0696ed8c3b7b5db2145a4641eaa55b774b05227b Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Wed, 27 Mar 2019 10:44:28 +0100 Subject: [PATCH] Removed yet another pair of stray bounds for `Send + Sync`. This time on keys --- src/plumbing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plumbing.rs b/src/plumbing.rs index 01a909a9..66428332 100644 --- a/src/plumbing.rs +++ b/src/plumbing.rs @@ -49,7 +49,7 @@ pub trait QueryStorageMassOps { fn sweep(&self, db: &DB, strategy: SweepStrategy); } -pub trait DatabaseKey: Clone + Debug + Eq + Hash + Send + Sync { +pub trait DatabaseKey: Clone + Debug + Eq + Hash { /// Returns true if the value of this query may have changed since /// the given revision. fn maybe_changed_since(&self, db: &DB, revision: Revision) -> bool;