pub trait FilterScan{
// 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§
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.