pub trait OverflowingMul<Rhs = Self>where
    Self: Sized,
{ fn overflowing_mul(self, rhs: Rhs) -> (Self, bool); }

Required Methods§

Implementors§