pub enum Variant4<V1R, V2R, V3R, V4R> {
V1(V1R),
V2(V2R),
V3(V3R),
V4(V4R),
}Variants
V1(V1R)
V2(V2R)
V3(V3R)
V4(V4R)
Trait Implementations
impl<V1, V2, V3, V4, V1R, V2R, V3R, V4R> Service<Variant4<V1R, V2R, V3R, V4R>> for VariantService4<V1, V2, V3, V4, V1R, V2R, V3R, V4R> where
V1: Service<V1R>,
V2: Service<V2R, Response = V1::Response, Error = V1::Error>,
V3: Service<V3R, Response = V1::Response, Error = V1::Error>,
V4: Service<V4R, Response = V1::Response, Error = V1::Error>,
impl<V1, V2, V3, V4, V1R, V2R, V3R, V4R> Service<Variant4<V1R, V2R, V3R, V4R>> for VariantService4<V1, V2, V3, V4, V1R, V2R, V3R, V4R> where
V1: Service<V1R>,
V2: Service<V2R, Response = V1::Response, Error = V1::Error>,
V3: Service<V3R, Response = V1::Response, Error = V1::Error>,
V4: Service<V4R, Response = V1::Response, Error = V1::Error>,
impl<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R> ServiceFactory<Variant4<V1R, V2R, V3R, V4R>, V1C> for VariantFactory4<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R> where
V1: ServiceFactory<V1R, V1C>,
V1C: Clone,
V2: ServiceFactory<V2R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
V3: ServiceFactory<V3R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
V4: ServiceFactory<V4R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
impl<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R> ServiceFactory<Variant4<V1R, V2R, V3R, V4R>, V1C> for VariantFactory4<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R> where
V1: ServiceFactory<V1R, V1C>,
V1C: Clone,
V2: ServiceFactory<V2R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
V3: ServiceFactory<V3R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
V4: ServiceFactory<V4R, V1C, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
The Service value created by this factory
type Future = ServiceFactoryResponse<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R>
type Future = ServiceFactoryResponse<V1, V1C, V2, V3, V4, V1R, V2R, V3R, V4R>
The future of the ServiceFactory instance.
Create and return a new service value asynchronously.
Map this service’s output to a different type, returning a new service of the resulting type. Read more
Map this service’s error to a different error, returning a new service.
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, Req, Cfg, F, E> where
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, Req, Cfg, F, E> where
F: Fn(Self::InitError) -> E + Clone,
Map this factory’s init error to a different error, returning a new service.