pub trait ExecuteMut<Rhs> {
type Output;
// Required method
fn execute_mut(&mut self, rhs: Rhs) -> Self::Output;
}pub trait ExecuteMut<Rhs> {
type Output;
// Required method
fn execute_mut(&mut self, rhs: Rhs) -> Self::Output;
}