Trait uints::UInt[][src]

pub trait UInt: Copy + Ord + Eq + Common + Sub<Output = Self> + Add<Output = Self> + AddAssign + Div<Output = Self> + DivAssign + Mul<Output = Self> + MulAssign + Rem<Output = Self> + Shl<u8, Output = Self> + ShlAssign<u8> + Shr<u8, Output = Self> + ShrAssign<u8> + BitOr<Output = Self> + BitOrAssign + BitAnd<Output = Self> + BitAndAssign + BitXor<Output = Self> + BitXorAssign + Not<Output = Self> {
    fn ror(self, i: u32) -> Self;
fn overflow_add(self, v: Self) -> Self; fn remove(self, i: u8) -> Self { ... }
fn take(self, i: u8) -> Self { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors