pub struct HypervisorInfo<R: CpuIdReader> { /* 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<R: CpuIdReader> HypervisorInfo<R>
impl<R: CpuIdReader> HypervisorInfo<R>
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.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for HypervisorInfo<R>where
R: Freeze,
impl<R> RefUnwindSafe for HypervisorInfo<R>where
R: RefUnwindSafe,
impl<R> Send for HypervisorInfo<R>where
R: Send,
impl<R> Sync for HypervisorInfo<R>where
R: Sync,
impl<R> Unpin for HypervisorInfo<R>where
R: Unpin,
impl<R> UnwindSafe for HypervisorInfo<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more