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