pub trait CheckedMulInto {
    type Output;

    fn checked_mul_into(&self, other: &Self) -> Option<Self::Output>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§