pub trait ApplyMut<Rhs> {
// Required method
fn apply_mut(&mut self, rhs: Rhs);
}Expand description
ApplyMut provides an interface for mutable containers that can apply a function onto
their elements, modifying them in place.
pub trait ApplyMut<Rhs> {
// Required method
fn apply_mut(&mut self, rhs: Rhs);
}ApplyMut provides an interface for mutable containers that can apply a function onto
their elements, modifying them in place.