pub struct HvConfig {
pub offload_enlightenments: bool,
pub allow_device_assignment: bool,
pub vtl2: Option<Vtl2Config>,
}Expand description
Hypervisor configuration.
Fields§
§offload_enlightenments: boolUse the hypervisor’s in-built enlightenment support if available.
allow_device_assignment: boolAllow device assignment on the partition.
vtl2: Option<Vtl2Config>Enable VTL2 support if set. Additional options are described by Vtl2Config.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HvConfig
impl RefUnwindSafe for HvConfig
impl Send for HvConfig
impl Sync for HvConfig
impl Unpin for HvConfig
impl UnwindSafe for HvConfig
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