pub type CompositeMakeServiceEntry<Target, ReqBody, ResBody, Error, MakeError> = (&'static str, Box<dyn CompositedMakeService<Target, ReqBody, ResBody, Error, MakeError> + Send>);
Available on crate feature server and (crate features http1 or http2) only.
Expand description

Service which can be composited with other services as part of a CompositeMakeService

Consists of a base path for requests which should be handled by this service, and a boxed MakeService.