[][src]Struct scrappy_service::dev::ApplyServiceFactory

pub struct ApplyServiceFactory<T, F, R, In, Out, Err> where
    T: ServiceFactory<Error = Err>,
    F: FnMut(In, &mut T::Service) -> R + Clone,
    R: Future<Output = Result<Out, Err>>, 
{ /* fields omitted */ }

apply() service factory

Trait Implementations

impl<T, F, R, In, Out, Err> Clone for ApplyServiceFactory<T, F, R, In, Out, Err> where
    T: ServiceFactory<Error = Err> + Clone,
    F: FnMut(In, &mut T::Service) -> R + Clone,
    R: Future<Output = Result<Out, Err>>, 
[src]

impl<T, F, R, In, Out, Err> ServiceFactory for ApplyServiceFactory<T, F, R, In, Out, Err> where
    T: ServiceFactory<Error = Err>,
    F: FnMut(In, &mut T::Service) -> R + Clone,
    R: Future<Output = Result<Out, Err>>, 
[src]

type Request = In

Requests handled by the service.

type Response = Out

Responses given by the service

type Error = Err

Errors produced by the service

type Config = T::Config

Service factory configuration

type Service = Apply<T::Service, F, R, In, Out, Err>

The Service value created by this factory

type InitError = T::InitError

Errors produced while building a service.

type Future = ApplyServiceFactoryResponse<T, F, R, In, Out, Err>

The future of the Service instance.

Auto Trait Implementations

impl<T, F, R, In, Out, Err> RefUnwindSafe for ApplyServiceFactory<T, F, R, In, Out, Err> where
    F: RefUnwindSafe,
    In: RefUnwindSafe,
    Out: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, F, R, In, Out, Err> Send for ApplyServiceFactory<T, F, R, In, Out, Err> where
    F: Send,
    In: Send,
    Out: Send,
    R: Send,
    T: Send

impl<T, F, R, In, Out, Err> Sync for ApplyServiceFactory<T, F, R, In, Out, Err> where
    F: Sync,
    In: Sync,
    Out: Sync,
    R: Sync,
    T: Sync

impl<T, F, R, In, Out, Err> Unpin for ApplyServiceFactory<T, F, R, In, Out, Err> where
    F: Unpin,
    In: Unpin,
    Out: Unpin,
    R: Unpin,
    T: Unpin

impl<T, F, R, In, Out, Err> UnwindSafe for ApplyServiceFactory<T, F, R, In, Out, Err> where
    F: UnwindSafe,
    In: UnwindSafe,
    Out: UnwindSafe,
    R: UnwindSafe,
    T: 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> IntoServiceFactory<T> for T where
    T: ServiceFactory
[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.