Trait list_fn::FilterScanFn[][src]

pub trait FilterScanFn: Sized {
    type InputItem;
    type InputResult;
    type OutputItem;
    type OutputResult;
    fn map_input(self, input: Self::InputItem) -> FilterScanState<Self>;
fn map_result(self, result: Self::InputResult) -> Self::OutputResult; }

Associated Types

Required methods

fn map_input(self, input: Self::InputItem) -> FilterScanState<Self>[src]

fn map_result(self, result: Self::InputResult) -> Self::OutputResult[src]

Implementors