pub trait Length<T = f64> { // Required method fn length(&self) -> T; }
Trait for elements having a length.
Returns the length of the element.