Struct actix_service::dev::MapErrServiceFactory [−][src]
pub struct MapErrServiceFactory<A, F, E> where
A: ServiceFactory,
F: Fn(A::Error) -> E + Clone, { /* fields omitted */ }
Expand description
Factory for the map_err
combinator, changing the type of a new
service’s error.
This is created by the NewServiceExt::map_err
method.
Trait Implementations
impl<A, F, E> Clone for MapErrServiceFactory<A, F, E> where
A: ServiceFactory + Clone,
F: Fn(A::Error) -> E + Clone,
impl<A, F, E> Clone for MapErrServiceFactory<A, F, E> where
A: ServiceFactory + Clone,
F: Fn(A::Error) -> E + Clone,
impl<A, F, E> ServiceFactory for MapErrServiceFactory<A, F, E> where
A: ServiceFactory,
F: Fn(A::Error) -> E + Clone,
impl<A, F, E> ServiceFactory for MapErrServiceFactory<A, F, E> where
A: ServiceFactory,
F: Fn(A::Error) -> E + Clone,
type Error = E
type Error = E
Errors produced by the created services.
type Future = MapErrServiceFuture<A, F, E>
type Future = MapErrServiceFuture<A, F, E>
The future of the Service
instance.
Create and return a new service 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, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, 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, F, E> RefUnwindSafe for MapErrServiceFactory<A, F, E> where
A: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
impl<A, F, E> Send for MapErrServiceFactory<A, F, E> where
A: Send,
E: Send,
F: Send,
impl<A, F, E> Sync for MapErrServiceFactory<A, F, E> where
A: Sync,
E: Sync,
F: Sync,
impl<A, F, E> Unpin for MapErrServiceFactory<A, F, E> where
A: Unpin,
E: Unpin,
F: Unpin,
impl<A, F, E> UnwindSafe for MapErrServiceFactory<A, F, E> where
A: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Self
to a ServiceFactory