Skip to main content

BfiEmitter

Trait BfiEmitter 

Source
pub trait BfiEmitter<T0, T1, T2, T3> {
    // Required method
    fn bfi(&mut self, rd: T0, rn: T1, lsb: T2, width: T3);
}
Expand description

Emits the BFI instruction. Assembly forms: BFI WD, WN, #LSB, #WIDTH; BFI XD, XN, #LSB, #WIDTH. Operands: rd, rn, lsb, width.

Required Methods§

Source

fn bfi(&mut self, rd: T0, rn: T1, lsb: T2, width: T3)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§