Struct raw_cpuid::HypervisorInfo
source · pub struct HypervisorInfo { /* private fields */ }
Expand description
Information about Hypervisor (LEAF=0x4000_0001)
More information about this semi-official leaf can be found here https://lwn.net/Articles/301888/
Implementations§
source§impl HypervisorInfo
impl HypervisorInfo
sourcepub fn identify(&self) -> Hypervisor
pub fn identify(&self) -> Hypervisor
Returns the identity of the Hypervisor
.
Technical Background
The value is a 12-byte (12 character) fixed-length ASCII string.
Usually all of these IDs can be found in the original source code on Github relatively easy (if the project is open source). Once you have an ID, you find cumulated lists with all kinds of IDs on Github relatively easy.
sourcepub fn tsc_frequency(&self) -> Option<u32>
pub fn tsc_frequency(&self) -> Option<u32>
TSC frequency in kHz.
sourcepub fn apic_frequency(&self) -> Option<u32>
pub fn apic_frequency(&self) -> Option<u32>
(Virtual) Bus (local apic timer) frequency in kHz.