Removed remaining stray bounds for Send + Sync that still survived PR #42

This commit is contained in:
Vincent Esche 2019-03-26 16:21:23 +01:00
parent 312467c981
commit 5aa0455950

View file

@ -406,7 +406,7 @@ pub trait Query<DB: Database>: Debug + Default + Sized + 'static {
type Value: Clone + Debug;
/// Internal struct storing the values for the query.
type Storage: plumbing::QueryStorageOps<DB, Self> + Send + Sync;
type Storage: plumbing::QueryStorageOps<DB, Self>;
/// Associate query group struct.
type Group: plumbing::QueryGroup<