Skip to main content

SabaEmitter

Trait SabaEmitter 

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

Emits the SABA instruction. Assembly forms: SABA VX.T, VN.T, VM.T; SABA VX.T, VN.T, VM.T. Operands: operand_1, rn, rm.

Required Methods§

Source

fn saba(&mut self, operand_1: T0, rn: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§