pub trait DupEmitter<T0, T1> {
// Required method
fn dup(&mut self, rd: T0, rn: T1);
}Expand description
Emits the DUP instruction.
Assembly forms: DUP|MOV BD, VN.B[#IDX]; DUP|MOV HD, VN.H[#IDX]; DUP|MOV SD, VN.S[#IDX]; DUP|MOV DD, VN.D[#IDX] (and related forms).
Operands: rd, rn.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".