pub trait InsEmitter<T0, T1> {
// Required method
fn ins(&mut self, lhs: T0, rhs: T1);
}Expand description
Emits INS.
Assembly forms: ins m8(es:zdi), dx, ins m16(es:zdi), dx, ins m32(es:zdi), dx.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".