pub trait AddFrom<Lhs = Self> {
// Required method
fn add_from(&mut self, lhs: Lhs);
}
Expand description
Addition with assignment to the rhs operand.
pub trait AddFrom<Lhs = Self> {
// Required method
fn add_from(&mut self, lhs: Lhs);
}
Addition with assignment to the rhs operand.