pub trait MultiplyInto<Right: ?Sized, Output: ?Sized> {
// Required method
fn multiply_into(&self, _: &Right, _: &mut Output);
}
Expand description
A multiplication that adds the result to a third object.
Required Methods§
Sourcefn multiply_into(&self, _: &Right, _: &mut Output)
fn multiply_into(&self, _: &Right, _: &mut Output)
Perform the multiplication.