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