Enum raw_cpuid::Hypervisor
source · pub enum Hypervisor {
Xen,
VMware,
HyperV,
KVM,
QEMU,
Bhyve,
QNX,
ACRN,
Unknown(u32, u32, u32),
}
Expand description
Identifies the different Hypervisor products.
Variants§
Xen
VMware
HyperV
KVM
QEMU
QEMU is the hypervisor identity when QEMU is used without an accelerator, such as KVM.
Bhyve
QNX
ACRN
Unknown(u32, u32, u32)
Trait Implementations§
source§impl Debug for Hypervisor
impl Debug for Hypervisor
source§impl PartialEq<Hypervisor> for Hypervisor
impl PartialEq<Hypervisor> for Hypervisor
source§fn eq(&self, other: &Hypervisor) -> bool
fn eq(&self, other: &Hypervisor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.