pub enum VmFail {
VmFailValid,
VmFailInvalid,
}
Expand description
Possible outcomes of VMfail pseudo-function used to convey VMX operation errors.
Definitions of all these pseudo-functions can be found in Intel SDM, Volume 3C, Section 30.2.
Variants§
VmFailValid
VMCS pointer is valid, but some other error was encountered. Read VM-instruction error field of VMCS for more details.
VmFailInvalid
VMCS pointer is not valid.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VmFail
impl RefUnwindSafe for VmFail
impl Send for VmFail
impl Sync for VmFail
impl Unpin for VmFail
impl UnwindSafe for VmFail
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