Enum list_fn::FlatScanList[][src]

pub enum FlatScanList<I: ListFn, F: FlatScan<InputItem = I::Item>> {
    Begin {
        flat_scan: F,
        input: I,
    },
    Item {
        item_list: F::ItemList,
        input: I,
    },
    End(F::EndList),
}

Variants

Begin

Fields of Begin

flat_scan: Finput: I
Item

Fields of Item

item_list: F::ItemListinput: I
End(F::EndList)

Trait Implementations

impl<I: ListFn, F: FlatScan<InputItem = I::Item>> ListFn for FlatScanList<I, F>[src]

type Item = <F::ItemList as ListFn>::Item

type End = <F::EndList as ListFn>::End

Auto Trait Implementations

impl<I, F> RefUnwindSafe for FlatScanList<I, F> where
    F: RefUnwindSafe,
    I: RefUnwindSafe,
    <F as FlatScan>::EndList: RefUnwindSafe,
    <F as FlatScan>::ItemList: RefUnwindSafe

impl<I, F> Send for FlatScanList<I, F> where
    F: Send,
    I: Send,
    <F as FlatScan>::EndList: Send,
    <F as FlatScan>::ItemList: Send

impl<I, F> Sync for FlatScanList<I, F> where
    F: Sync,
    I: Sync,
    <F as FlatScan>::EndList: Sync,
    <F as FlatScan>::ItemList: Sync

impl<I, F> Unpin for FlatScanList<I, F> where
    F: Unpin,
    I: Unpin,
    <F as FlatScan>::EndList: Unpin,
    <F as FlatScan>::ItemList: Unpin

impl<I, F> UnwindSafe for FlatScanList<I, F> where
    F: UnwindSafe,
    I: UnwindSafe,
    <F as FlatScan>::EndList: UnwindSafe,
    <F as FlatScan>::ItemList: 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.