pub trait IncrementRef { type Output; // Required method fn inc_ref(&self) -> Self::Output; }
IncrementRef is similar to Increment, but it allows for incrementing a value by reference.
IncrementRef
Increment