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