pub trait TryMap: Sized {
    fn try_map<F: FnOnce(f32) -> f32>(&self, op: F) -> Option<Self>;
}
Expand description

A trait for values that can potentially be mapped.

Required Methods

Returns the result of the operation, if possible.

Implementors