[−][src]Struct actix_service::FromErrNewService
NewService for the from_err combinator, changing the type of a new
service's error.
This is created by the NewServiceExt::from_err method.
Methods
impl<A, E> FromErrNewService<A, E>[src]
pub fn new(a: A) -> Self where
A: NewService,
E: From<A::Error>, [src]
A: NewService,
E: From<A::Error>,
Create new FromErr new service instance
Trait Implementations
impl<A, E> Clone for FromErrNewService<A, E> where
A: Clone, [src]
A: Clone,
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<A, E> NewService for FromErrNewService<A, E> where
A: NewService,
E: From<A::Error>, [src]
A: NewService,
E: From<A::Error>,
type Request = A::Request
Requests handled by the service.
type Response = A::Response
Responses given by the service
type Error = E
Errors produced by the service
type Config = A::Config
Service factory configuration
type Service = FromErr<A::Service, E>
The Service value created by this factory
type InitError = A::InitError
Errors produced while building a service.
type Future = FromErrNewServiceFuture<A, E>
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, E> RefUnwindSafe for FromErrNewService<A, E> where
A: RefUnwindSafe,
E: RefUnwindSafe,
A: RefUnwindSafe,
E: RefUnwindSafe,
impl<A, E> Send for FromErrNewService<A, E> where
A: Send,
E: Send,
A: Send,
E: Send,
impl<A, E> Sync for FromErrNewService<A, E> where
A: Sync,
E: Sync,
A: Sync,
E: Sync,
impl<A, E> Unpin for FromErrNewService<A, E> where
A: Unpin,
E: Unpin,
A: Unpin,
E: Unpin,
impl<A, E> UnwindSafe for FromErrNewService<A, E> where
A: UnwindSafe,
E: UnwindSafe,
A: UnwindSafe,
E: 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>,