Type Definition swagger::composites::CompositeMakeServiceEntry[][src]

type CompositeMakeServiceEntry<Target, ReqBody, ResBody, Error, MakeError> = (&'static str, Box<dyn CompositedMakeService<Target, ReqBody, ResBody, Error, MakeError> + Send>);

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.