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 for Hypervisor
impl PartialEq for Hypervisor
impl Eq for Hypervisor
impl StructuralPartialEq for Hypervisor
Auto Trait Implementations§
impl Freeze for Hypervisor
impl RefUnwindSafe for Hypervisor
impl Send for Hypervisor
impl Sync for Hypervisor
impl Unpin for Hypervisor
impl UnwindSafe for Hypervisor
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