Trait list_fn::FilterFn[][src]

pub trait FilterFn {
    type Input;
    type Output;
    fn map(&self, input: Self::Input) -> Option<Self::Output>;
}

Associated Types

Loading content...

Required methods

fn map(&self, input: Self::Input) -> Option<Self::Output>[src]

Expand description

Map the given input item into an output item.

Loading content...

Implementors

Loading content...