[][src]Type Definition async_svc::BoxSvc

type BoxSvc<Req, Res> = Pin<Box<dyn Svc<Req, Res = Res, Fut = BoxFut<Res>>>>;

Trait Implementations

impl<Req, Res> Svc<Req> for BoxSvc<Req, Res>[src]

type Res = Res

Output type.

type Fut = BoxFut<Res>

Response future.