pub trait Decrement { type Output; // Required method fn dec(self) -> Self::Output; }
Represents C++’s prefix decrement (--a).
--a
Output type.
Decrement self.
self