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