Trait EnablePartitionVtl

Source
pub trait EnablePartitionVtl {
    // Required method
    fn enable_partition_vtl(
        &mut self,
        partition_id: u64,
        target_vtl: Vtl,
        flags: EnablePartitionVtlFlags,
    ) -> HvResult<()>;
}
Expand description

Implements the HvEnablePartitionVtl hypercall.

Required Methods§

Source

fn enable_partition_vtl( &mut self, partition_id: u64, target_vtl: Vtl, flags: EnablePartitionVtlFlags, ) -> HvResult<()>

Enables the VTL for the partition.

Implementors§