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

Required Methods§

Implementors§