Trait aurum_numeric::CheckedMul [] [src]

pub trait CheckedMul<R = Self> {
    type Output;
    fn checked_mul(self, rhs: R) -> Option<Self::Output>;
}

Checked multiplication which returns None if an overflow or underflow occurs.

Associated Types

Required Methods

Implementors