Trait list_fn::FilterScan

source ·
pub trait FilterScanwhere
    Self: ListFn,
    Self::End: ResultFn,{
    // Provided method
    fn filter_scan<S: FilterScanFn<InputItem = Self::Item, InputResult = <Self::End as ResultFn>::Result>>(
        self,
        scan: S
    ) -> FlatScanState<Self, FilterScanWrap<S>> { ... }
}

Provided Methods§

source

fn filter_scan<S: FilterScanFn<InputItem = Self::Item, InputResult = <Self::End as ResultFn>::Result>>( self, scan: S ) -> FlatScanState<Self, FilterScanWrap<S>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L> FilterScan for Lwhere L: ListFn, L::End: ResultFn,