Trait list_fn::Scan

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L> Scan for Lwhere Self: ListFn, Self::End: ResultFn,