[][src]Enum swim_codec::then::Then

pub enum Then<C, D, E> {
    Cont(C),
    Done(D),
    Fail(E),
}

Variants

Cont(C)Done(D)Fail(E)

Trait Implementations

impl<C: Debug, D: Debug, E: Debug> Debug for Then<C, D, E>[src]

impl<C: Clone, D: Clone, E: Clone> Clone for Then<C, D, E>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<C, D, E> Send for Then<C, D, E> where
    C: Send,
    D: Send,
    E: Send

impl<C, D, E> Sync for Then<C, D, E> where
    C: Sync,
    D: Sync,
    E: Sync

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]