mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +00:00
Merge pull request #42 from memoryruins/remove-send-bounds
Remove Send bounds on Query keys and values
This commit is contained in:
commit
d3fdfad141
1 changed files with 2 additions and 2 deletions
|
@ -72,8 +72,8 @@ pub trait QueryFunction<DB: Database>: Query<DB> {
|
|||
}
|
||||
|
||||
pub trait Query<DB: Database>: Debug + Default + Sized + 'static {
|
||||
type Key: Clone + Debug + Hash + Eq + Send;
|
||||
type Value: Clone + Debug + Hash + Eq + Send;
|
||||
type Key: Clone + Debug + Hash + Eq;
|
||||
type Value: Clone + Debug + Hash + Eq;
|
||||
type Storage: QueryStorageOps<DB, Self> + Send + Sync;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue