pub trait Decrement { type Output; // Required method fn dec(&self) -> Self::Output; }
Decrement is a trait describing the ability to decrement a value.
Decrement