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