pub trait Min<Rhs = Self> { type Output; fn min(self, rhs: Rhs) -> Self::Output; }
A type operator that returns the minimum of Self and Rhs.
Self
Rhs
The type of the minimum of Self and Rhs
Method returning the minimum