pub trait Min<T> { type Output; // Required method fn min(&self, other: T) -> Self::Output; }
Overload the Min trait.
Min
Return type of Min
Overloaded min function.
min