pub trait SaturatingSub<Rhs = Self> {
type Output;
// Required method
fn saturating_sub(self, rhs: Rhs) -> Self::Output;
}Expand description
Subtraction operator which returns the closest possible value in the event of an overflow or underflow.