pub trait Min<Rhs = Self> {
    type Output;
    // Required method
    fn min(self, rhs: Rhs) -> Self::Output;
}Expand description
A type operator that returns the minimum of Self and Rhs.
pub trait Min<Rhs = Self> {
    type Output;
    // Required method
    fn min(self, rhs: Rhs) -> Self::Output;
}A type operator that returns the minimum of Self and Rhs.