mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add ?Sized to Rc service (#125)
Co-authored-by: nebanfic <banfic.nenad@gmail.com>
This commit is contained in:
parent
df3d29387f
commit
bcec02a381
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ where
|
|||
|
||||
impl<S, Req> Service<Req> for Rc<S>
|
||||
where
|
||||
S: Service<Req>,
|
||||
S: Service<Req> + ?Sized,
|
||||
{
|
||||
type Response = S::Response;
|
||||
type Error = S::Error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue