[][src]Struct actix_service::ApplyNewService

pub struct ApplyNewService<T, S> where
    T: NewTransform<S::Service, InitError = S::InitError>,
    T::Error: From<S::Error>,
    S: NewService
{ /* fields omitted */ }

ApplyNewService new service combinator

Methods

impl<T, S> ApplyNewService<T, S> where
    T: NewTransform<S::Service, InitError = S::InitError>,
    T::Error: From<S::Error>,
    S: NewService
[src]

pub fn new<T1: IntoNewTransform<T, S::Service>, S1: IntoNewService<S>>(
    transform: T1,
    service: S1
) -> Self
[src]

Create new ApplyNewService new service instance

impl<F, S, In, Out> ApplyNewService<FnNewTransform<F, S::Service, In, Out, S::InitError>, S> where
    F: FnMut(In, &mut S::Service) -> Out + Clone,
    Out: IntoFuture,
    Out::Error: From<S::Error>,
    S: NewService
[src]

pub fn new_fn<S1: IntoNewService<S>>(service: S1, transform: F) -> Self[src]

Create new Apply combinator factory

Trait Implementations

impl<T, S> NewService for ApplyNewService<T, S> where
    T: NewTransform<S::Service, InitError = S::InitError>,
    T::Error: From<S::Error>,
    S: NewService
[src]

type Request = T::Request

Requests handled by the service.

type Response = T::Response

Responses given by the service

type Error = T::Error

Errors produced by the service

type Service = Apply<T::Transform, S::Service>

The Service value created by this factory

type InitError = T::InitError

Errors produced while building a service.

type Future = ApplyNewServiceFuture<T, S>

The future of the Service instance.

fn apply<T, T1, B, B1>(
    self,
    transform: T1,
    service: B1
) -> AndThenTransformNewService<T, Self, B> where
    Self: Sized,
    T: NewTransform<B::Service, Request = Self::Response, InitError = Self::InitError>,
    T::Error: From<Self::Error>,
    T1: IntoNewTransform<T, B::Service>,
    B: NewService<Error = Self::Error, InitError = Self::InitError>,
    B1: IntoNewService<B>, 
[src]

Apply function to specified service and use it as a next service in chain. Read more

fn apply_fn<B, I, F, Out>(
    self,
    service: I,
    f: F
) -> AndThenApplyNewService<Self, B, F, Out> where
    Self: Sized,
    B: NewService<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]

Apply function to specified service and use it as a next service in chain. Read more

fn and_then<F, B>(self, new_service: F) -> AndThenNewService<Self, B> where
    Self: Sized,
    F: IntoNewService<B>,
    B: NewService<Request = Self::Response, Error = Self::Error, InitError = Self::InitError>, 
[src]

Call another service after call to this one has resolved successfully.

fn from_err<E>(self) -> FromErrNewService<Self, E> where
    Self: Sized,
    E: From<Self::Error>, 
[src]

NewService that create service to map this service's error and new service's init error to any error implementing From for this servicesError`. Read more

fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B> where
    Self: Sized,
    F: IntoNewService<B>,
    B: NewService<Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>, 
[src]

Create NewService to chain on a computation for when a call to the service finished, passing the result of the call to the next service B. Read more

fn map<F, R>(self, f: F) -> MapNewService<Self, F, R> where
    Self: Sized,
    F: FnMut(Self::Response) -> R, 
[src]

Map this service's output to a different type, returning a new service of the resulting type. Read more

fn map_err<F, E>(self, f: F) -> MapErrNewService<Self, F, E> where
    Self: Sized,
    F: Fn(Self::Error) -> E, 
[src]

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, 
[src]

Map this service's init error to a different error, returning a new service.

impl<T, S> Clone for ApplyNewService<T, S> where
    T: NewTransform<S::Service, InitError = S::InitError> + Clone,
    T::Error: From<S::Error>,
    S: NewService + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T, S> Send for ApplyNewService<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for ApplyNewService<T, S> where
    S: Sync,
    T: Sync

Blanket Implementations

impl<F, R, E, S> NewService for F where
    F: Fn() -> R,
    R: IntoFuture<Item = S, Error = E>,
    S: Service
[src]

type Request = <S as Service>::Request

Requests handled by the service.

type Response = <S as Service>::Response

Responses given by the service

type Error = <S as Service>::Error

Errors produced by the service

type Service = S

The Service value created by this factory

type InitError = E

Errors produced while building a service.

type Future = <R as IntoFuture>::Future

The future of the Service instance.

fn apply<T, T1, B, B1>(
    self,
    transform: T1,
    service: B1
) -> AndThenTransformNewService<T, Self, B> where
    Self: Sized,
    T: NewTransform<B::Service, Request = Self::Response, InitError = Self::InitError>,
    T::Error: From<Self::Error>,
    T1: IntoNewTransform<T, B::Service>,
    B: NewService<Error = Self::Error, InitError = Self::InitError>,
    B1: IntoNewService<B>, 
[src]

Apply function to specified service and use it as a next service in chain. Read more

fn apply_fn<B, I, F, Out>(
    self,
    service: I,
    f: F
) -> AndThenApplyNewService<Self, B, F, Out> where
    Self: Sized,
    B: NewService<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]

Apply function to specified service and use it as a next service in chain. Read more

fn and_then<F, B>(self, new_service: F) -> AndThenNewService<Self, B> where
    Self: Sized,
    F: IntoNewService<B>,
    B: NewService<Request = Self::Response, Error = Self::Error, InitError = Self::InitError>, 
[src]

Call another service after call to this one has resolved successfully.

fn from_err<E>(self) -> FromErrNewService<Self, E> where
    Self: Sized,
    E: From<Self::Error>, 
[src]

NewService that create service to map this service's error and new service's init error to any error implementing From for this servicesError`. Read more

fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B> where
    Self: Sized,
    F: IntoNewService<B>,
    B: NewService<Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>, 
[src]

Create NewService to chain on a computation for when a call to the service finished, passing the result of the call to the next service B. Read more

fn map<F, R>(self, f: F) -> MapNewService<Self, F, R> where
    Self: Sized,
    F: FnMut(Self::Response) -> R, 
[src]

Map this service's output to a different type, returning a new service of the resulting type. Read more

fn map_err<F, E>(self, f: F) -> MapErrNewService<Self, F, E> where
    Self: Sized,
    F: Fn(Self::Error) -> E, 
[src]

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, 
[src]

Map this service's init error to a different error, returning a new service.

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

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.