pub trait Mul3Emitter<T0, T1, T2> {
// Required method
fn mul_3(&mut self, dst: T0, dst2: T1, src: T2);
}Expand description
Emits MUL_3.
Assembly forms: mul <ax>, r8/m8, mul <dxv>, <axv>, rv/mv.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".