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