pub trait HasLength {
// Required method
fn length(&self) -> usize;
}Expand description
Represents types that have length defined for their values.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".