pub trait AssignAdd<Lhs = Self, Rhs = Self> {
// Required method
fn assign_add(&mut self, lhs: Lhs, rhs: Rhs);
}
Expand description
Addition with assignment into a separate argument.
pub trait AssignAdd<Lhs = Self, Rhs = Self> {
// Required method
fn assign_add(&mut self, lhs: Lhs, rhs: Rhs);
}
Addition with assignment into a separate argument.