mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-27 15:07:03 +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)]
|
#[derive(new)]
|
||||||
pub struct QueryTable<'me, DB, Q>
|
pub struct QueryTable<'me, DB, Q>
|
||||||
where
|
where
|
||||||
DB: Database,
|
DB: Database + 'me,
|
||||||
Q: Query<DB>,
|
Q: Query<DB> + 'me,
|
||||||
{
|
{
|
||||||
db: &'me DB,
|
db: &'me DB,
|
||||||
storage: &'me Q::Storage,
|
storage: &'me Q::Storage,
|
||||||
|
|
Loading…
Reference in a new issue