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