pub trait ShlEmitter<T0, T1> {
// Required method
fn shl(&mut self, dst: T0, src: T1);
}Expand description
Emits SHL.
Assembly forms: shl r8/m8, cl, shl rv/mv, cl, shl r8/m8, 1.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".