pub trait Max<Other = Self> { type Output; // Required method fn max(self, other: Other) -> Self::Output; }
Provides maximum value selector