pub trait MlsEmitter<T0, T1, T2> {
// Required method
fn mls(&mut self, operand_1: T0, rn: T1, rm: T2);
}Expand description
Emits the MLS instruction.
Assembly forms: MLS VX.T, VN.T, VM.T; MLS VX.T, VN.T, VM.T; MLS VX.4H, VN.4H, VM.H[#IDX]; MLS VX.8H, VN.8H, VM.H[#IDX] (and related forms).
Operands: operand_1, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".