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>> { ... }
}