pub trait Minimum: Ord {
    fn minimum() -> Self;
}
Expand description

Trait for types for which a minimum possible value exists.

This trait must be implemented for any K key type in the ConcurrentMap.

Required Methods

The returned value must be less than or equal to all possible values for this type.

Implementations on Foreign Types

Implementors