Type Definition actix_service::boxed::BoxService[][src]

type BoxService<Req, Res, Err> = Box<dyn Service<Req, Response = Res, Error = Err, Future = BoxFuture<Result<Res, Err>>>>;

Type alias for service trait object using Box.