Skip to main content

TbxEmitter

Trait TbxEmitter 

Source
pub trait TbxEmitter<T0, T1, T2> {
    // Required method
    fn tbx(&mut self, operand_1: T0, rn_or_operand_2: T1, rm: T2);
}
Expand description

Emits the TBX instruction. Assembly forms: TBX VX.8B, VN.16B, VM.8B; TBX VX.16B, VN.16B, VM.16B; TBX VX.8B, 2X{VN.16B}+, VM.8B; TBX VX.16B, 2X{VN.16B}+, VM.16B (and related forms). Operands: operand_1, rn_or_operand_2, rm.

Required Methods§

Source

fn tbx(&mut self, operand_1: T0, rn_or_operand_2: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§