Struct ntex_service::dev::ThenFactory [−][src]
pub struct ThenFactory<A, B, R>(_, _);Expand description
.then() service factory combinator
Trait Implementations
impl<A, B, R, C> ServiceFactory<R, C> for ThenFactory<A, B, R> where
A: ServiceFactory<R, C>,
C: Clone,
B: ServiceFactory<Result<A::Response, A::Error>, C, Error = A::Error, InitError = A::InitError>,
impl<A, B, R, C> ServiceFactory<R, C> for ThenFactory<A, B, R> where
A: ServiceFactory<R, C>,
C: Clone,
B: ServiceFactory<Result<A::Response, A::Error>, C, Error = A::Error, InitError = A::InitError>,
type Future = ThenFactoryResponse<A, B, R, C>
type Future = ThenFactoryResponse<A, B, R, C>
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
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, Req, Cfg, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
Map this factory’s init error to a different error, returning a new service.
Auto Trait Implementations
impl<A, B, R> RefUnwindSafe for ThenFactory<A, B, R> where
A: RefUnwindSafe,
B: RefUnwindSafe,
R: RefUnwindSafe,
impl<A, B, R> !Send for ThenFactory<A, B, R>
impl<A, B, R> !Sync for ThenFactory<A, B, R>
impl<A, B, R> Unpin for ThenFactory<A, B, R> where
R: Unpin,
impl<A, B, R> UnwindSafe for ThenFactory<A, B, R> where
A: RefUnwindSafe,
B: RefUnwindSafe,
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Self to a ServiceFactory
