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

Required Methods§

Implementors§