pub trait CheckedMulInner: Sized {
    type Inner;

    fn checked_mul_inner(&self, other: &Self::Inner) -> Option<Self>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§