pub trait PrimUnsignedInt: Unsigned + PrimInt + WrappingAdd + WrappingSub + WrappingMul + WrappingShl + WrappingShr + AddAssign<Self> + for<'a> AddAssign<&'a Self> + SubAssign<Self> + for<'a> SubAssign<&'a Self> + MulAssign<Self> + for<'a> MulAssign<&'a Self> + DivAssign<Self> + for<'a> DivAssign<&'a Self> + RemAssign<Self> + for<'a> RemAssign<&'a Self> + Debug + Display + Binary + LowerHex + UpperHex + Octal {
    type NonZero: NonZero<Int = Self>;
}
Expand description

Functions for primitive unsigned integral types.

Required Associated Types

The NonZero part for this type.

Implementations on Foreign Types

Implementors