pub trait AssignNot<Arg = Self> {
// Required method
fn assign_not(&mut self, arg: Arg);
}
Expand description
Complement with assignment into a separate argument.
pub trait AssignNot<Arg = Self> {
// Required method
fn assign_not(&mut self, arg: Arg);
}
Complement with assignment into a separate argument.