pub struct ThenFactory<A, B> { /* private fields */ }Expand description
Service factory produced by the then combinator.
Trait Implementations§
Source§impl<A: Clone, B: Clone> Clone for ThenFactory<A, B>
impl<A: Clone, B: Clone> Clone for ThenFactory<A, B>
Source§fn clone(&self) -> ThenFactory<A, B>
fn clone(&self) -> ThenFactory<A, B>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A, B, St, Req> ServiceFactory<St, Req> for ThenFactory<A, B>where
A: ServiceFactory<St, Req>,
B: ServiceFactory<St, Result<A::Res, A::Error>, Error = A::Error, InitError = A::InitError>,
impl<A, B, St, Req> ServiceFactory<St, Req> for ThenFactory<A, B>where
A: ServiceFactory<St, Req>,
B: ServiceFactory<St, Result<A::Res, A::Error>, Error = A::Error, InitError = A::InitError>,
Source§type Res = <B as ServiceFactory<St, Result<<A as ServiceFactory<St, Req>>::Res, <A as ServiceFactory<St, Req>>::Error>>>::Res
type Res = <B as ServiceFactory<St, Result<<A as ServiceFactory<St, Req>>::Res, <A as ServiceFactory<St, Req>>::Error>>>::Res
Response produced by the created services.
Source§type Error = <A as ServiceFactory<St, Req>>::Error
type Error = <A as ServiceFactory<St, Req>>::Error
Error produced by the created services.
Source§type Service = Then<<A as ServiceFactory<St, Req>>::Service, <B as ServiceFactory<St, Result<<A as ServiceFactory<St, Req>>::Res, <A as ServiceFactory<St, Req>>::Error>>>::Service>
type Service = Then<<A as ServiceFactory<St, Req>>::Service, <B as ServiceFactory<St, Result<<A as ServiceFactory<St, Req>>::Res, <A as ServiceFactory<St, Req>>::Error>>>::Service>
The type of
Service produced by this factory.Source§type InitError = <A as ServiceFactory<St, Req>>::InitError
type InitError = <A as ServiceFactory<St, Req>>::InitError
Error that can occur while constructing a service.
Source§async fn create(&self, st: &St) -> Result<Self::Service, Self::InitError>
async fn create(&self, st: &St) -> Result<Self::Service, Self::InitError>
Asynchronously creates a service using the supplied state.
Source§async fn pipeline(
&self,
st: St,
) -> Result<Pipeline<Req, Self::Res, Self::Error>, Self::InitError>where
Self: 'static,
St: 'static,
Req: 'static,
async fn pipeline(
&self,
st: St,
) -> Result<Pipeline<Req, Self::Res, Self::Error>, Self::InitError>where
Self: 'static,
St: 'static,
Req: 'static,
Creates a service and wraps it with its state in a
Pipeline.Source§fn map<F, Res>(
self,
f: F,
) -> ServiceChainFactory<MapFactory<F, Self, Res>, St, Req>
fn map<F, Res>( self, f: F, ) -> ServiceChainFactory<MapFactory<F, Self, Res>, St, Req>
Returns a factory whose services map responses to a different type.
Source§fn map_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapErrFactory<F, Self, E>, St, Req>
fn map_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapErrFactory<F, Self, E>, St, Req>
Returns a factory whose services map errors to a different type.
Source§fn map_init_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapInitErr<F, Self, E>, St, Req>
fn map_init_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapInitErr<F, Self, E>, St, Req>
Maps this factory’s initialization error to a different error,
returning a new service factory.
Source§fn and_then<U, F>(
self,
f: F,
) -> ServiceChainFactory<AndThenFactory<Self, U>, St, Req>where
Self: Sized,
U: ServiceFactory<St, Self::Res, Error = Self::Error, InitError = Self::InitError>,
F: IntoServiceFactory<U, St, Self::Res>,
fn and_then<U, F>(
self,
f: F,
) -> ServiceChainFactory<AndThenFactory<Self, U>, St, Req>where
Self: Sized,
U: ServiceFactory<St, Self::Res, Error = Self::Error, InitError = Self::InitError>,
F: IntoServiceFactory<U, St, Self::Res>,
Chains another factory after this factory’s services. Read more
Auto Trait Implementations§
impl<A, B> Freeze for ThenFactory<A, B>
impl<A, B> RefUnwindSafe for ThenFactory<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for ThenFactory<A, B>
impl<A, B> Sync for ThenFactory<A, B>
impl<A, B> Unpin for ThenFactory<A, B>
impl<A, B> UnsafeUnpin for ThenFactory<A, B>where
A: UnsafeUnpin,
B: UnsafeUnpin,
impl<A, B> UnwindSafe for ThenFactory<A, B>where
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Sf, St, Req> IntoServiceFactory<Sf, St, Req> for Sfwhere
Sf: ServiceFactory<St, Req>,
impl<Sf, St, Req> IntoServiceFactory<Sf, St, Req> for Sfwhere
Sf: ServiceFactory<St, Req>,
Source§fn into_factory(self) -> Sf
fn into_factory(self) -> Sf
Converts this value into a service factory.