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