Trait num::traits::ops::overflowing::OverflowingSub    
source · [−]pub trait OverflowingSub: Sub<Self, Output = Self> {
    fn overflowing_sub(&self, v: &Self) -> (Self, bool);
}Expand description
Performs substraction with a flag for overflow.