Skip to main content

SbfizEmitter

Trait SbfizEmitter 

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

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

Required Methods§

Source

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