Trait list_fn::ScanFn[][src]

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

Associated Types

Required methods

Implementors