pub trait LslvEmitter<T0, T1, T2> {
// Required method
fn lslv(&mut self, rd: T0, rn: T1, rm: T2);
}Expand description
Emits the LSLV instruction.
Assembly forms: LSL|LSLV WD, WN, WM; LSL|LSLV XD, XN, XM.
Operands: rd, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".