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