pub trait Mapper<I, O>: Send + Sync { // Required method fn map(&self, item: &I) -> O; }
Basic mapper trait to be used with the mapper dataset.
Maps an item of type I to an item of type O.