Type Alias xitca_web::service::object::BoxedServiceObject
source · pub type BoxedServiceObject<Req, Res, Err> = Box<dyn ServiceObject<Req, Error = Err, Response = Res>>;Expand description
An often used type alias for boxed service object. used when Req type is not bound to any lifetime.
Aliased Type§
struct BoxedServiceObject<Req, Res, Err>(/* private fields */);