pub trait SriEmitter<T0, T1, T2> {
// Required method
fn sri(&mut self, operand_1: T0, rn: T1, shift: T2);
}Expand description
Emits the SRI instruction.
Assembly forms: SRI DX, DN, #N; SRI VX.T, VN.T, #N; SRI VX.T, VN.T, #N.
Operands: operand_1, rn, shift.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".