pub trait SaturatingSub<Rhs = Self> {
type Output;
// Required method
const fn saturating_sub(self, rhs: Rhs) -> Self::Output;
}
pub trait SaturatingSub<Rhs = Self> {
type Output;
// Required method
const fn saturating_sub(self, rhs: Rhs) -> Self::Output;
}