Trait rayon::iter::MapOp  
                   
                       [−]
                   
               [src]
pub trait MapOp<In>: Sync {
    type Output: Send;
    fn map(&self, value: In) -> Self::Output;
}Specifies a "map operator", transforming values into something else.
Implementing this trait is not permitted outside of rayon.