pub trait SmlslEmitter<T0, T1, T2> {
// Required method
fn smlsl(&mut self, operand_1: T0, rn: T1, rm: T2);
}Expand description
Emits the SMLSL instruction.
Assembly forms: SMLSL VX.TA, VN.TB, VM.TB; SMLSL VX.4S, VN.4H, VM.H[#IDX]; SMLSL VX.2D, VN.2S, VM.S[#IDX].
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".