pub trait ApplyMut<Rhs> {
type Output;
// Required method
fn apply_mut(&mut self, rhs: Rhs) -> Self::Output;
}Expand description
The ApplyMut trait defines an interface for objects capable of mutably borrowing themselves
to apply the given function onto themselves or their elements to produce some output.