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