pub trait Cmn3Emitter<T0, T1, T2> {
// Required method
fn cmn_3(&mut self, rn: T0, imm_or_rm: T1, shift: T2);
}Expand description
Emits the CMN_3 instruction.
Assembly forms: CMN WN|WSP, #IMM, {LSL #N=0|12}; CMN XN|SP, #IMM, {LSL #N=0|12}; CMN WN|WSP, WM, {EXTEND #N}; CMN XN|SP, RM, {EXTEND #N} (and related forms).
Operands: rn, imm_or_rm, shift.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".