pub trait IntegerType: 'static + CheckedAbs + CheckedNeg + CheckedPow + CheckedRem + CheckedShl + CheckedShr + Debug + Default + Display + FromBits + FromBytes + FromStr<Err = ParseIntError> + Hash + Modulo + Zero + One + PartialOrd<Self> + Send + Sync + ToBits + ToBytes + ToPrimitive + Uniform + WrappingAbs + WrappingAdd + WrappingMul + WrappingNeg + WrappingPow + WrappingRem + WrappingShl + WrappingShr + WrappingSub + WrappingDiv + IntegerProperties { }
Expand description
Trait bound for integer values. Common to both signed and unsigned integers.