[][src]Struct ntex::util::variant::VariantService4

pub struct VariantService4<V1, V2, V3, V4> { /* fields omitted */ }

Trait Implementations

impl<V1: Clone, V2: Clone, V3: Clone, V4: Clone> Clone for VariantService4<V1, V2, V3, V4>[src]

impl<V1, V2, V3, V4> Service for VariantService4<V1, V2, V3, V4> where
    V1: Service,
    V2: Service<Response = V1::Response, Error = V1::Error>,
    V3: Service<Response = V1::Response, Error = V1::Error>,
    V4: Service<Response = V1::Response, Error = V1::Error>, 
[src]

type Request = Variant4<V1::Request, V2::Request, V3::Request, V4::Request>

Requests handled by the service.

type Response = V1::Response

Responses given by the service.

type Error = V1::Error

Errors produced by the service.

type Future = ServiceResponse<V1::Future, V2::Future, V3::Future, V4::Future>

The future response value.

Auto Trait Implementations

impl<V1, V2, V3, V4> RefUnwindSafe for VariantService4<V1, V2, V3, V4> where
    V1: RefUnwindSafe,
    V2: RefUnwindSafe,
    V3: RefUnwindSafe,
    V4: RefUnwindSafe
[src]

impl<V1, V2, V3, V4> Send for VariantService4<V1, V2, V3, V4> where
    V1: Send,
    V2: Send,
    V3: Send,
    V4: Send
[src]

impl<V1, V2, V3, V4> Sync for VariantService4<V1, V2, V3, V4> where
    V1: Sync,
    V2: Sync,
    V3: Sync,
    V4: Sync
[src]

impl<V1, V2, V3, V4> Unpin for VariantService4<V1, V2, V3, V4> where
    V1: Unpin,
    V2: Unpin,
    V3: Unpin,
    V4: Unpin
[src]

impl<V1, V2, V3, V4> UnwindSafe for VariantService4<V1, V2, V3, V4> where
    V1: UnwindSafe,
    V2: UnwindSafe,
    V3: UnwindSafe,
    V4: UnwindSafe
[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoService<T> for T where
    T: Service
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,