pub trait CheckedMul: Mul + Sized {
    fn checked_mul(self, rhs: Self) -> Option<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors