FilterScan

Trait FilterScan 

Source
pub trait FilterScan
where 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>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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