pub trait Distance {
    type Other;
    fn distance(&self, other: &Self::Other) -> f32;
}

Associated Types

Required methods

Implementors