pub trait PointManhattan<T> {
// Required method
fn manhattan(&self, other: &Self) -> T;
}Expand description
A point capable of computing the Manhattan distance between itself and another point of the same type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.