[−][src]Struct actix_service::ThenNewService
ThenNewService new service combinator
Methods
impl<A, B> ThenNewService<A, B>[src]
pub fn new<F>(a: A, f: F) -> Self where
A: NewService,
B: NewService<Config = A::Config, Request = Result<A::Response, A::Error>, Error = A::Error, InitError = A::InitError>,
F: IntoNewService<B>, [src]
A: NewService,
B: NewService<Config = A::Config, Request = Result<A::Response, A::Error>, Error = A::Error, InitError = A::InitError>,
F: IntoNewService<B>,
Create new AndThen combinator
Trait Implementations
impl<A, B> Clone for ThenNewService<A, B> where
A: Clone,
B: Clone, [src]
A: Clone,
B: Clone,
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<A, B> NewService for ThenNewService<A, B> where
A: NewService,
B: NewService<Config = A::Config, Request = Result<A::Response, A::Error>, Error = A::Error, InitError = A::InitError>, [src]
A: NewService,
B: NewService<Config = A::Config, Request = Result<A::Response, A::Error>, Error = A::Error, InitError = A::InitError>,
type Request = A::Request
Requests handled by the service.
type Response = B::Response
Responses given by the service
type Error = A::Error
Errors produced by the service
type Config = A::Config
Service factory configuration
type Service = Then<A::Service, B::Service>
The Service value created by this factory
type InitError = A::InitError
Errors produced while building a service.
type Future = ThenNewServiceFuture<A, B>
The future of the Service instance.
fn new_service(&self, cfg: &A::Config) -> Self::Future[src]
fn apply<T, T1, B, B1>(
self,
transform: T1,
service: B1
) -> AndThenTransform<T, Self, B> where
Self: Sized,
T: Transform<B::Service, Request = Self::Response, InitError = Self::InitError>,
T::Error: From<Self::Error>,
T1: IntoTransform<T, B::Service>,
B: NewService<Config = Self::Config, InitError = Self::InitError>,
B1: IntoNewService<B>, [src]
self,
transform: T1,
service: B1
) -> AndThenTransform<T, Self, B> where
Self: Sized,
T: Transform<B::Service, Request = Self::Response, InitError = Self::InitError>,
T::Error: From<Self::Error>,
T1: IntoTransform<T, B::Service>,
B: NewService<Config = Self::Config, InitError = Self::InitError>,
B1: IntoNewService<B>,
fn apply_fn<B, I, F, Out>(
self,
service: I,
f: F
) -> AndThenApplyNewService<Self, B, F, Out> where
Self: Sized,
B: NewService<Config = Self::Config, Error = Self::Error, InitError = Self::InitError>,
I: IntoNewService<B>,
F: FnMut(Self::Response, &mut B::Service) -> Out,
Out: IntoFuture,
Out::Error: Into<Self::Error>, [src]
self,
service: I,
f: F
) -> AndThenApplyNewService<Self, B, F, Out> where
Self: Sized,
B: NewService<Config = Self::Config, Error = Self::Error, InitError = Self::InitError>,
I: IntoNewService<B>,
F: FnMut(Self::Response, &mut B::Service) -> Out,
Out: IntoFuture,
Out::Error: Into<Self::Error>,
fn and_then<F, B>(self, new_service: F) -> AndThenNewService<Self, B> where
Self: Sized,
F: IntoNewService<B>,
B: NewService<Config = Self::Config, Request = Self::Response, Error = Self::Error, InitError = Self::InitError>, [src]
Self: Sized,
F: IntoNewService<B>,
B: NewService<Config = Self::Config, Request = Self::Response, Error = Self::Error, InitError = Self::InitError>,
fn from_err<E>(self) -> FromErrNewService<Self, E> where
Self: Sized,
E: From<Self::Error>, [src]
Self: Sized,
E: From<Self::Error>,
fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B> where
Self: Sized,
F: IntoNewService<B>,
B: NewService<Config = Self::Config, Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>, [src]
Self: Sized,
F: IntoNewService<B>,
B: NewService<Config = Self::Config, Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>,
fn map<F, R>(self, f: F) -> MapNewService<Self, F, R> where
Self: Sized,
F: FnMut(Self::Response) -> R, [src]
Self: Sized,
F: FnMut(Self::Response) -> R,
fn map_err<F, E>(self, f: F) -> MapErrNewService<Self, F, E> where
Self: Sized,
F: Fn(Self::Error) -> E + Clone, [src]
Self: Sized,
F: Fn(Self::Error) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E, [src]
Self: Sized,
F: Fn(Self::InitError) -> E,
fn map_config<F, C>(self, f: F) -> MapConfig<Self, F, C> where
Self: Sized,
F: Fn(&C) -> MappedConfig<Self::Config>, [src]
Self: Sized,
F: Fn(&C) -> MappedConfig<Self::Config>,
fn unit_config<C>(self) -> UnitConfig<Self, C> where
Self: NewService<Config = ()> + Sized, [src]
Self: NewService<Config = ()> + Sized,
Auto Trait Implementations
impl<A, B> RefUnwindSafe for ThenNewService<A, B> where
A: RefUnwindSafe,
B: RefUnwindSafe,
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for ThenNewService<A, B> where
A: Send,
B: Send,
A: Send,
B: Send,
impl<A, B> Sync for ThenNewService<A, B> where
A: Sync,
B: Sync,
A: Sync,
B: Sync,
impl<A, B> Unpin for ThenNewService<A, B> where
A: Unpin,
B: Unpin,
A: Unpin,
B: Unpin,
impl<A, B> UnwindSafe for ThenNewService<A, B> where
A: UnwindSafe,
B: UnwindSafe,
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoNewService<T> for T where
T: NewService, [src]
T: NewService,
fn into_new_service(Self) -> T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,