pub trait Integer: Number + Shl<Output = Self> + ShlAssign + Shr<Output = Self> + ShrAssign + BitOr<Output = Self> + BitOrAssign + BitAnd<Output = Self> + BitAndAssign + BitXor<Output = Self> + BitXorAssign { }Expand description
integer point trait for various sized integers