PrivateMin

Trait PrivateMin 

Source
pub trait PrivateMin<Rhs, CmpResult> {
    type Output;

    // Required method
    fn private_min(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn private_min(self, rhs: Rhs) -> Self::Output

Implementors§

Source§

impl<U, B, Ur> PrivateMin<Ur, Equal> for UInt<U, B>
where Ur: Unsigned, U: Unsigned, B: Bit,

Source§

type Output = UInt<U, B>

Source§

impl<U, B, Ur> PrivateMin<Ur, Greater> for UInt<U, B>
where Ur: Unsigned, U: Unsigned, B: Bit,

Source§

type Output = Ur

Source§

impl<U, B, Ur> PrivateMin<Ur, Less> for UInt<U, B>
where Ur: Unsigned, U: Unsigned, B: Bit,

Source§

type Output = UInt<U, B>