pub trait UbfxEmitter<T0, T1, T2, T3> {
// Required method
fn ubfx(&mut self, rd: T0, rn: T1, lsb: T2, width: T3);
}Expand description
Emits the UBFX instruction.
Assembly forms: UBFX WD, WN, #LSB, #WIDTH; UBFX 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".