Trait list_fn::MapFn[][src]

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

Associated Types

Required methods

Map the given input item into an output item.

Implementors