pub struct FlatMapList<I: ListFn, F: FlatMapFn<Input = I::Item>> { /* private fields */ }Trait Implementations§
Auto Trait Implementations§
impl<I, F> Freeze for FlatMapList<I, F>
impl<I, F> RefUnwindSafe for FlatMapList<I, F>
impl<I, F> Send for FlatMapList<I, F>
impl<I, F> Sync for FlatMapList<I, F>
impl<I, F> Unpin for FlatMapList<I, F>
impl<I, F> UnwindSafe for FlatMapList<I, F>
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.