Enum linux_loader::loader::elf::PvhBootCapability
source · pub enum PvhBootCapability {
PvhEntryPresent(GuestAddress),
PvhEntryNotPresent,
PvhEntryIgnored,
}
Expand description
Availability of PVH entry point in the kernel, which allows the VMM to use the PVH boot protocol to start guests.
Variants§
PvhEntryPresent(GuestAddress)
PVH entry point is present
PvhEntryNotPresent
PVH entry point is not present
PvhEntryIgnored
PVH entry point is ignored, even if available
Trait Implementations§
source§impl Clone for PvhBootCapability
impl Clone for PvhBootCapability
source§fn clone(&self) -> PvhBootCapability
fn clone(&self) -> PvhBootCapability
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more