Type Alias actix_service::boxed::RcService

source ·
pub type RcService<Req, Res, Err> = Rc<dyn Service<Req, Response = Res, Error = Err, Future = BoxFuture<Result<Res, Err>>>>;
Expand description

Type alias for service trait object using Rc.

Aliased Type§

struct RcService<Req, Res, Err> { /* private fields */ }