pub trait Decrement { type Output; // Required method fn dec(self) -> Self::Output; }
Decrement defines an interface for decrementing a value.
Decrement