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