[][src]Enum ntex::util::variant::Variant3

pub enum Variant3<V1, V2, V3> {
    V1(V1),
    V2(V2),
    V3(V3),
}

Variants

V1(V1)
V2(V2)
V3(V3)

Auto Trait Implementations

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

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

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

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

impl<V1, V2, V3> UnwindSafe for Variant3<V1, V2, V3> where
    V1: UnwindSafe,
    V2: UnwindSafe,
    V3: 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> Same<T> for T

type Output = T

Should always be Self

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>,