pub enum VmCap {
DirtyLog,
PvClock,
Protected,
EarlyInitCpuid,
BusLockDetect,
ReadOnlyMemoryRegion,
MemNoncoherentDma,
}Expand description
A capability the Vm can possibly expose.
Variants§
DirtyLog
Track dirty pages
PvClock
Paravirtualized clock device
Protected
VM can be run in protected mode, where the host does not have access to its memory.
EarlyInitCpuid
VM completes initialization of CPUID at creation time, not required after.
BusLockDetect
VM can detect the bus lock
ReadOnlyMemoryRegion
Supports read-only memory regions.
MemNoncoherentDma
VM can set guest memory cache noncoherent DMA flag
Trait Implementations§
impl Copy for VmCap
impl Eq for VmCap
impl StructuralPartialEq for VmCap
Auto Trait Implementations§
impl Freeze for VmCap
impl RefUnwindSafe for VmCap
impl Send for VmCap
impl Sync for VmCap
impl Unpin for VmCap
impl UnwindSafe for VmCap
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