Enum list_fn::List[][src]

pub enum List<L: ListFn> {
    Some(L::Item, L),
    End(L::End),
}

Variants

Some(L::Item, L)
End(L::End)

Auto Trait Implementations

impl<L> RefUnwindSafe for List<L> where
    L: RefUnwindSafe,
    <L as ListFn>::End: RefUnwindSafe,
    <L as ListFn>::Item: RefUnwindSafe

impl<L> Send for List<L> where
    L: Send,
    <L as ListFn>::End: Send,
    <L as ListFn>::Item: Send

impl<L> Sync for List<L> where
    L: Sync,
    <L as ListFn>::End: Sync,
    <L as ListFn>::Item: Sync

impl<L> Unpin for List<L> where
    L: Unpin,
    <L as ListFn>::End: Unpin,
    <L as ListFn>::Item: Unpin

impl<L> UnwindSafe for List<L> where
    L: UnwindSafe,
    <L as ListFn>::End: UnwindSafe,
    <L as ListFn>::Item: 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, U> Into<U> for T where
    U: From<T>, 
[src]

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.