[][src]Struct actix_service::FromErrNewService

pub struct FromErrNewService<A, E> { /* fields omitted */ }

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]

Create new FromErr new service instance

Trait Implementations

impl<A, E> Clone for FromErrNewService<A, E> where
    A: Clone
[src]

impl<A, E> NewService for FromErrNewService<A, E> where
    A: NewService,
    E: From<A::Error>, 
[src]

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.

Auto Trait Implementations

impl<A, E> RefUnwindSafe for FromErrNewService<A, E> where
    A: RefUnwindSafe,
    E: RefUnwindSafe

impl<A, E> Send for FromErrNewService<A, E> where
    A: Send,
    E: Send

impl<A, E> Sync for FromErrNewService<A, E> where
    A: Sync,
    E: Sync

impl<A, E> Unpin for FromErrNewService<A, E> where
    A: Unpin,
    E: Unpin

impl<A, E> UnwindSafe for FromErrNewService<A, E> where
    A: UnwindSafe,
    E: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoNewService<T> for T where
    T: NewService
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.