pub enum PvhBootCapability {
PvhEntryPresent(GuestAddress),
PvhEntryNotPresent,
PvhEntryIgnored,
}
Available on (x86 or x86-64) and crate feature
elf
only.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 moreSource§impl Debug for PvhBootCapability
impl Debug for PvhBootCapability
Source§impl Default for PvhBootCapability
impl Default for PvhBootCapability
Source§fn default() -> PvhBootCapability
fn default() -> PvhBootCapability
Returns the “default value” for a type. Read more
Source§impl Display for PvhBootCapability
impl Display for PvhBootCapability
Source§impl PartialEq for PvhBootCapability
impl PartialEq for PvhBootCapability
impl Copy for PvhBootCapability
impl Eq for PvhBootCapability
impl StructuralPartialEq for PvhBootCapability
Auto Trait Implementations§
impl Freeze for PvhBootCapability
impl RefUnwindSafe for PvhBootCapability
impl Send for PvhBootCapability
impl Sync for PvhBootCapability
impl Unpin for PvhBootCapability
impl UnwindSafe for PvhBootCapability
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