pub enum FlatScanState<I, F>{
Begin {
flat_scan: F,
input_list: I,
},
OutputList {
output_list: F::OutputList,
input_list: I,
},
EndList(F::EndList),
}Variants§
Trait Implementations§
Source§impl<I, F> ListFn for FlatScanState<I, F>
impl<I, F> ListFn for FlatScanState<I, F>
Auto Trait Implementations§
impl<I, F> Freeze for FlatScanState<I, F>where
F: Freeze,
I: Freeze,
<F as FlatScanFn>::OutputList: Freeze,
<F as FlatScanFn>::EndList: Freeze,
impl<I, F> RefUnwindSafe for FlatScanState<I, F>where
F: RefUnwindSafe,
I: RefUnwindSafe,
<F as FlatScanFn>::OutputList: RefUnwindSafe,
<F as FlatScanFn>::EndList: RefUnwindSafe,
impl<I, F> Send for FlatScanState<I, F>
impl<I, F> Sync for FlatScanState<I, F>
impl<I, F> Unpin for FlatScanState<I, F>
impl<I, F> UnwindSafe for FlatScanState<I, F>where
F: UnwindSafe,
I: UnwindSafe,
<F as FlatScanFn>::OutputList: UnwindSafe,
<F as FlatScanFn>::EndList: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<L> Filter for Lwhere
L: ListFn,
impl<L> Filter for Lwhere
L: ListFn,
fn filter<F: FilterFn<Input = Self::Item>>( self, f: F, ) -> FlatMapList<Self, FilterWrap<F>>
Source§impl<S> FlatScan for Swhere
S: ListFn,
impl<S> FlatScan for Swhere
S: ListFn,
fn flat_scan<F>(self, flat_scan: F) -> FlatScanState<Self, F>
Source§impl<S> Iter for Swhere
S: ListFn<End = S>,
impl<S> Iter for Swhere
S: ListFn<End = S>,
Source§fn iter(self) -> ListIterator<Self> ⓘ
fn iter(self) -> ListIterator<Self> ⓘ
Converts a list to an iterator.