pub trait SbfxEmitter<T0, T1, T2, T3> {
// Required method
fn sbfx(&mut self, rd: T0, rn: T1, lsb: T2, width: T3);
}Expand description
Emits the SBFX instruction.
Assembly forms: SBFX WD, WN, #LSB, #WIDTH; SBFX XD, XN, #LSB, #WIDTH.
Operands: rd, rn, lsb, width.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".