fix impl lifetimes

This commit is contained in:
Ritesh Chitlangi 2021-12-21 00:14:38 +08:00
parent 537fe10bee
commit d5d3a93141
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ impl Extension for Update {
impl Transaction<UpdateWithNameStore<'_>> for DomainUpdate<'_> {}
impl<'a> Extension for UpdateWithNameStore<'a> {
type Response = NameStore<'a>;
impl Extension for UpdateWithNameStore<'_> {
type Response = NameStore<'static>;
}
#[derive(PartialEq, Debug)]