pub trait Min<Rhs = Self> {
type Output;
fn min(self, rhs: Rhs) -> Self::Output;
}
Expand description
A type operator that returns the minimum of Self
and Rhs
.
The type of the minimum of Self
and Rhs
Method returning the minimum
sourceimpl<U, B, Ur> Min<Ur> for UInt<U, B> where
U: Unsigned,
B: Bit,
Ur: Unsigned,
UInt<U, B>: Cmp<Ur>,
UInt<U, B>: PrivateMin<Ur, <UInt<U, B> as Cmp<Ur>>::Output>,