Trait list_fn::FlatScan

source ·
pub trait FlatScan: ListFn {
    // Provided method
    fn flat_scan<F>(self, flat_scan: F) -> FlatScanState<Self, F>
       where F: FlatScanFn<InputItem = Self::Item>,
             Self::End: ResultFn<Result = F::InputResult> { ... }
}

Provided Methods§

source

fn flat_scan<F>(self, flat_scan: F) -> FlatScanState<Self, F>where F: FlatScanFn<InputItem = Self::Item>, Self::End: ResultFn<Result = F::InputResult>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S: ListFn> FlatScan for S