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