pub trait FloatMeasure: Measure + Copy {
    fn zero() -> Self;
    fn infinite() -> Self;
}
Expand description

A floating-point measure.

Required Methods

Implementations on Foreign Types

Implementors