pub trait HasLength {
// Required method
fn length(&self) -> f64;
}Expand description
HasLength is a trait used for types which have a physical length
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".