pub trait DecrementRef { type Output; // Required method fn dec_ref(&self) -> Self::Output; }
DecrementRef is a trait describing the ability to decrement a value by reference.
DecrementRef