1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 08:45:10 +02:00

export Uri

This commit is contained in:
Nikolay Kim
2018-10-11 20:15:10 -07:00
parent 06addd5523
commit b960b5827c
4 changed files with 15 additions and 11 deletions

View File

@ -22,7 +22,7 @@ pub struct H1Service<T, S> {
impl<T, S> H1Service<T, S>
where
S: NewService,
S: NewService<Request = Request, Response = Response> + Clone,
S::Service: Clone,
S::Error: Debug,
{