logo
pub trait Distance<T, RHS> {
    fn distance_to(&self, other: &RHS) -> T;
}

Required Methods

Implementors