pub trait PositiveMeasure: Measure + Copy {
// Required methods
fn zero() -> Self;
fn max() -> Self;
}
Expand description
Some measure of positive numbers, assuming positive float-pointing numbers
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.