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

pub struct VariantFactory7<V1, V2, V3, V4, V5, V6, V7> { /* fields omitted */ }

Implementations

impl<V1, V2, V3, V4, V5, V6, V7> VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: ServiceFactory,
    V1::Config: Clone
[src]

pub fn v8<V8, F>(
    self,
    factory: F
) -> VariantFactory8<V1, V2, V3, V4, V5, V6, V7, V8> where
    V8: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    F: IntoServiceFactory<V8>, 
[src]

Convert to a Variant with more request types

Trait Implementations

impl<V1: Clone, V2: Clone, V3: Clone, V4: Clone, V5: Clone, V6: Clone, V7: Clone> Clone for VariantFactory7<V1, V2, V3, V4, V5, V6, V7>[src]

impl<V1, V2, V3, V4, V5, V6, V7> ServiceFactory for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: ServiceFactory,
    V1::Config: Clone,
    V2: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    V3: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    V4: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    V5: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    V6: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>,
    V7: ServiceFactory<Config = V1::Config, Response = V1::Response, Error = V1::Error, InitError = V1::InitError>, 
[src]

type Request = Variant7<V1::Request, V2::Request, V3::Request, V4::Request, V5::Request, V6::Request, V7::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 Config = V1::Config

Service factory configuration

type InitError = V1::InitError

Errors produced while building a service.

type Service = VariantService7<V1::Service, V2::Service, V3::Service, V4::Service, V5::Service, V6::Service, V7::Service>

The Service value created by this factory

type Future = ServiceFactoryResponse<V1, V2, V3, V4, V5, V6, V7>

The future of the ServiceFactory instance.

Auto Trait Implementations

impl<V1, V2, V3, V4, V5, V6, V7> RefUnwindSafe for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: RefUnwindSafe,
    V2: RefUnwindSafe,
    V3: RefUnwindSafe,
    V4: RefUnwindSafe,
    V5: RefUnwindSafe,
    V6: RefUnwindSafe,
    V7: RefUnwindSafe
[src]

impl<V1, V2, V3, V4, V5, V6, V7> Send for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: Send,
    V2: Send,
    V3: Send,
    V4: Send,
    V5: Send,
    V6: Send,
    V7: Send
[src]

impl<V1, V2, V3, V4, V5, V6, V7> Sync for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: Sync,
    V2: Sync,
    V3: Sync,
    V4: Sync,
    V5: Sync,
    V6: Sync,
    V7: Sync
[src]

impl<V1, V2, V3, V4, V5, V6, V7> Unpin for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: Unpin,
    V2: Unpin,
    V3: Unpin,
    V4: Unpin,
    V5: Unpin,
    V6: Unpin,
    V7: Unpin
[src]

impl<V1, V2, V3, V4, V5, V6, V7> UnwindSafe for VariantFactory7<V1, V2, V3, V4, V5, V6, V7> where
    V1: UnwindSafe,
    V2: UnwindSafe,
    V3: UnwindSafe,
    V4: UnwindSafe,
    V5: UnwindSafe,
    V6: UnwindSafe,
    V7: 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> IntoServiceFactory<T> for T where
    T: ServiceFactory
[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>,