pub trait DecrementMut {
// Required method
fn dec_mut(&mut self);
}Expand description
The DecrementMut trait defines a decrement method that operates in place,
modifying the original object.
pub trait DecrementMut {
// Required method
fn dec_mut(&mut self);
}The DecrementMut trait defines a decrement method that operates in place,
modifying the original object.