pub trait Distance<Other> {
    fn distance(&self, other: &Other) -> f32;
}
Expand description

Trait for finding the distance between two objects

Required methods

The distance between two objects

Implementors