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

Required Methods§

Implementations on Foreign Types§

Implementors§