Skip to main content

CmltEmitter

Trait CmltEmitter 

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

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

Required Methods§

Source

fn cmlt(&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§