Skip to main content

CmleEmitter

Trait CmleEmitter 

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

Emits the CMLE instruction. Assembly forms: CMLE DD, DN, #0; CMLE VD.T, VN.T, #0; CMLE VD.T, VN.T, #0. Operands: rd, rn, operand_3.

Required Methods§

Source

fn cmle(&mut self, rd: T0, rn: T1, operand_3: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§