pub enum InnerResult {
Halt,
PageFault(u32),
HostCallFault(u32),
}Expand description
The result of inner PVM invocations.
Variants§
Halt
HALT Completed normally.
PageFault(u32)
FAULT Completed with a page fault.
HostCallFault(u32)
HOST Completed with a host-call fault.
Auto Trait Implementations§
impl Freeze for InnerResult
impl RefUnwindSafe for InnerResult
impl Send for InnerResult
impl Sync for InnerResult
impl Unpin for InnerResult
impl UnwindSafe for InnerResult
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