pub struct ProtoPartitionConfig<'a> {
pub processor_topology: &'a ProcessorTopology,
pub hv_config: Option<HvConfig>,
pub vmtime: &'a VmTimeSource,
pub user_mode_apic: bool,
pub isolation: IsolationType,
}
Expand description
Prototype partition creation configuration.
Fields§
§processor_topology: &'a ProcessorTopology
The set of VPs to create.
hv_config: Option<HvConfig>
Microsoft hypervisor guest interface configuration.
vmtime: &'a VmTimeSource
VM time access.
user_mode_apic: bool
Use the user-mode APIC emulator, if supported.
isolation: IsolationType
Isolation type for this partition.
Auto Trait Implementations§
impl<'a> Freeze for ProtoPartitionConfig<'a>
impl<'a> !RefUnwindSafe for ProtoPartitionConfig<'a>
impl<'a> Send for ProtoPartitionConfig<'a>
impl<'a> Sync for ProtoPartitionConfig<'a>
impl<'a> Unpin for ProtoPartitionConfig<'a>
impl<'a> !UnwindSafe for ProtoPartitionConfig<'a>
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