mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +00:00
Removed remaining stray bounds for Send + Sync
that still survived PR #42
This commit is contained in:
parent
312467c981
commit
5aa0455950
1 changed files with 1 additions and 1 deletions
|
@ -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<
|
||||
|
|
Loading…
Reference in a new issue