Skip to main content

BslEmitter

Trait BslEmitter 

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

Emits the BSL instruction. Assembly forms: BSL DX.8B, VN.8B, VM.8B; BSL VX.16B, VN.16B, VM.16B. Operands: operand_1, rn, rm.

Required Methods§

Source

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