pub trait Decrement {
type Output;
// Required method
fn dec(self) -> Self::Output;
}Expand description
Decrement is a chainable trait that defines a decrement method,
effectively removing a single unit from the original object to create another