Trait BaseArithmetic

Source
pub trait BaseArithmetic:
    From<u8>
    + Zero
    + One
    + IntegerSquareRoot
    + Add<Self, Output = Self>
    + AddAssign<Self>
    + Sub<Self, Output = Self>
    + SubAssign<Self>
    + Mul<Self, Output = Self>
    + MulAssign<Self>
    + Div<Self, Output = Self>
    + DivAssign<Self>
    + Rem<Self, Output = Self>
    + RemAssign<Self>
    + Shl<u32, Output = Self>
    + Shr<u32, Output = Self>
    + CheckedShl
    + CheckedShr
    + CheckedAdd
    + CheckedSub
    + CheckedMul
    + CheckedDiv
    + CheckedRem
    + CheckedNeg
    + Ensure
    + Saturating
    + PartialOrd<Self>
    + Ord
    + Bounded
    + HasCompact
    + Sized
    + Clone
    + TryFrom<u8>
    + TryInto<u8>
    + TryFrom<u16>
    + TryInto<u16>
    + TryFrom<u32>
    + TryInto<u32>
    + TryFrom<u64>
    + TryInto<u64>
    + TryFrom<u128>
    + TryInto<u128>
    + TryFrom<usize>
    + TryInto<usize>
    + UniqueSaturatedFrom<u8>
    + UniqueSaturatedInto<u8>
    + UniqueSaturatedFrom<u16>
    + UniqueSaturatedInto<u16>
    + UniqueSaturatedFrom<u32>
    + UniqueSaturatedInto<u32>
    + UniqueSaturatedFrom<u64>
    + UniqueSaturatedInto<u64>
    + UniqueSaturatedFrom<u128>
    + UniqueSaturatedInto<u128> { }
Expand description

A meta trait for arithmetic type operations, regardless of any limitation on size.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§