pub trait MultiplyInto<Right: ?Sized, Output: ?Sized> {
    fn multiply_into(&self, _: &Right, _: &mut Output);
}
Expand description

A multiplication that adds the result to a third object.

Required Methods§

Perform the multiplication.

Implementors§