Skip to main content

BoxedServiceObject

Type Alias 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ยง

pub struct BoxedServiceObject<Req, Res, Err>(/* private fields */);