Trait GetM

Source
pub trait GetM<M = MValue> {
    // Required method
    fn m(&self) -> Option<&M>;
}
Expand description

Trait to extract the m value

Required Methods§

Source

fn m(&self) -> Option<&M>

Returns the m value

Implementors§

Source§

impl<M: Clone> GetM<M> for VectorPoint<M>