pub trait COMeasure: COPrimitive {
// Required method
fn len(self) -> Self::MeasureType;
}Expand description
Exact measure capability for a closed-open interval.
Required Methods§
Sourcefn len(self) -> Self::MeasureType
fn len(self) -> Self::MeasureType
Returns the exact interval length.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".