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

Required Methods§

Implementations on Foreign Types§

Implementors§