mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +00:00
add back implied outlives bounds
Those were reverted on beta.
This commit is contained in:
parent
a0c983403d
commit
a353ffb13c
1 changed files with 2 additions and 2 deletions
|
@ -152,8 +152,8 @@ where
|
|||
#[derive(new)]
|
||||
pub struct QueryTable<'me, DB, Q>
|
||||
where
|
||||
DB: Database,
|
||||
Q: Query<DB>,
|
||||
DB: Database + 'me,
|
||||
Q: Query<DB> + 'me,
|
||||
{
|
||||
db: &'me DB,
|
||||
storage: &'me Q::Storage,
|
||||
|
|
Loading…
Reference in a new issue