pub trait Increment { type Output; // Required method fn inc(self) -> Self::Output; }
The Increment
Increment