pub trait BoundedMeasure: Measure + Sub<Self, Output = Self> {
    fn min() -> Self;
    fn max() -> Self;
    fn overflowing_add(self, rhs: Self) -> (Self, bool);
}

Required Methods

Implementations on Foreign Types

Implementors