Type Definition multilink::BoxedService
source · pub type BoxedService<Request, Response> = Box<dyn Service<Request, Response = ServiceResponse<Response>, Error = ServiceError, Future = ServiceFuture<ServiceResponse<Response>>> + Send + Sync>;Expand description
A boxed dynamic type for multilink services. The service must return
a result with a ServiceResponse or ServiceError.