pub trait Max<Rhs = Self> {
    type Output;

    fn max(self, rhs: Rhs) -> Self::Output;
}
Expand description

A type operator that returns the maximum of Self and Rhs.

Required Associated Types

The type of the maximum of Self and Rhs

Required Methods

Method returning the maximum

Implementors