pub trait UpperBounded {
    fn max_value() -> Self;
}
Expand description

Numbers which have upper bounds

Required Methods

Returns the largest finite number this type can represent

Implementors