pub trait IntegerCore<I: IntegerType>: AbsChecked + AbsWrapped + AddAssign + Add<Output = Self> + AddChecked<Output = Self> + AddWrapped<Output = Self> + BitAndAssign + BitAnd<Output = Self> + BitOrAssign + BitOr<Output = Self> + BitXorAssign + BitXor<Output = Self> + Clone + Compare + DivAssign + Div<Output = Self> + DivChecked<Output = Self> + DivWrapped<Output = Self> + Eject + Equal + FromBits + Inject + MulAssign + Mul<Output = Self> + MulChecked<Output = Self> + MulWrapped<Output = Self> + Neg<Output = Self> + Not<Output = Self> + One + Parser + RemAssign + Rem<Output = Self> + RemChecked<Output = Self> + RemWrapped<Output = Self> + SubAssign + Sub<Output = Self> + SubChecked<Output = Self> + SubWrapped<Output = Self> + Ternary + ToBits + TypeName + Zero { }

Object Safety§

This trait is not object safe.

Implementors§