pub trait Minimum: Ord { const MIN: Self; }
Trait for types for which a minimum possible value exists.
This trait must be implemented for any K key type in the ConcurrentMap.
K
ConcurrentMap
The returned value must be less than or equal to all possible values for this type.