Skip to main content

SmaxEmitter

Trait SmaxEmitter 

Source
pub trait SmaxEmitter<T0, T1, T2> {
    // Required method
    fn smax(&mut self, rd: T0, rn: T1, rm_or_imm: T2);
}
Expand description

Emits the SMAX instruction. Assembly forms: SMAX WD, WN, WM; SMAX XD, XN, XM; SMAX WD, WN, #IMMS; SMAX XD, XN, #IMMS (and related forms). Operands: rd, rn, rm_or_imm.

Required Methods§

Source

fn smax(&mut self, rd: T0, rn: T1, rm_or_imm: T2)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§