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