Trait list_fn::FilterFn

source ·
pub trait FilterFn {
    type Input;
    type Output;

    fn map(&self, input: Self::Input) -> Option<Self::Output>;
}

Required Associated Types§

Required Methods§

Map the given input item into an output item.

Implementors§