pub trait Minimum: Ord {
    const MIN: 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 Associated Constants

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

Implementations on Foreign Types

Implementors