pub trait UnsignedLike: Add<Output = Self> + BitAnd<Output = Self> + BitOrAssign + Copy + Debug + Default + Display + From<u8> + PartialOrd + Shl<u32, Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Sub<Output = Self> {
    const ZERO: Self;
    const ONE: Self;
    const MAX: Self;
    const BITS: usize;

    fn to_f64(self) -> f64;
fn last_u8(self) -> u8; }

Associated Constants

Required methods

Implementations on Foreign Types

Implementors