pub trait CheckedSub<Rhs = Self> {
type Output;
// Required method
fn checked_sub(self, rhs: Rhs) -> Option<Self::Output>;
}
pub trait CheckedSub<Rhs = Self> {
type Output;
// Required method
fn checked_sub(self, rhs: Rhs) -> Option<Self::Output>;
}