pub trait LowerBounded {
    fn min_value() -> Self;
}
Expand description

Numbers which have lower bounds

Required Methods

Returns the smallest finite number this type can represent

Implementors