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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".