Trait list_fn::FlatScanFn[][src]

pub trait FlatScanFn {
    type InputItem;
    type InputResult;
    type OutputList: ListFn<End = Self>;
    type EndList: ListFn<Item = <Self::OutputList as ListFn>::Item>;
    fn map_item(self, item: Self::InputItem) -> Self::OutputList;
fn map_result(self, result: Self::InputResult) -> Self::EndList; }

Associated Types

Required methods

Map the given input item into a list.

Map the given result into an end list.

Implementors