pub trait Point: Clone + Sync {
    // Required method
    fn distance(&self, other: &Self) -> f32;
}

Required Methods§

source

fn distance(&self, other: &Self) -> f32

Implementors§