pub trait AndsEmitter<T0, T1, T2> {
// Required method
fn ands(&mut self, rd: T0, rn: T1, rm_or_imm: T2);
}Expand description
Emits the ANDS instruction.
Assembly forms: ANDS WD|WSP, WN, WM, {SOP #N}; ANDS XD|SP, XN, XM, {SOP #N}; ANDS WD|WSP, WN, #IMM; ANDS XD|SP, XN, #IMM.
Operands: rd, rn, rm_or_imm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".