pub trait RdpruEmitter<T0, T1, T2> {
// Required method
fn rdpru(&mut self, dst: T0, dst2: T1, src: T2);
}Expand description
Emits RDPRU.
Assembly forms: rdpru <edx>, <eax>, <ecx>.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".