pub trait SubsEmitter<T0, T1, T2> {
// Required method
fn subs(&mut self, rd: T0, rn: T1, rm_or_imm: T2);
}Expand description
Emits the SUBS instruction.
Assembly forms: SUBS WD, WN, WM, {LSL|LSR|ASR #N}; SUBS XD, XN, XM, {LSL|LSR|ASR #N}; SUBS WD, WN|WSP, WM, {EXTEND #N}; SUBS XD, XN|SP, RM, {EXTEND #N} (and related forms).
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".