Trait agb::number::FixedWidthUnsignedInteger[][src]

pub trait FixedWidthUnsignedInteger: Sized + Copy + PartialOrd + Ord + PartialEq + Eq + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Add<Output = Self> + Sub<Output = Self> + Not<Output = Self> + BitAnd<Output = Self> + Rem<Output = Self> + Div<Output = Self> + Mul<Output = Self> + From<u8> + Debug + Display {
    fn zero() -> Self;
fn one() -> Self;
fn ten() -> Self; }

Required methods

Implementors