This commit is contained in:
Nikolay Kim 2025-01-14 21:58:10 +05:00 committed by GitHub
parent 44fcfd62ff
commit cd56883197
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -256,7 +256,7 @@ pub trait ServiceFactory<Req, Cfg = ()> {
}
}
impl<'a, S, Req> Service<Req> for &'a S
impl<S, Req> Service<Req> for &S
where
S: Service<Req>,
{