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

pub enum Variant2<V1, V2> {
    V1(V1),
    V2(V2),
}

Variants

V1(V1)
V2(V2)

Auto Trait Implementations

impl<V1, V2> RefUnwindSafe for Variant2<V1, V2> where
    V1: RefUnwindSafe,
    V2: RefUnwindSafe

impl<V1, V2> Send for Variant2<V1, V2> where
    V1: Send,
    V2: Send

impl<V1, V2> Sync for Variant2<V1, V2> where
    V1: Sync,
    V2: Sync

impl<V1, V2> Unpin for Variant2<V1, V2> where
    V1: Unpin,
    V2: Unpin

impl<V1, V2> UnwindSafe for Variant2<V1, V2> where
    V1: UnwindSafe,
    V2: 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> 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>,