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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".