#[repr(C)]pub struct hv_vcpu_exit_t {
pub reason: hv_exit_reason_t,
pub exception: hv_vcpu_exit_exception_t,
}Expand description
Information about an exit from the vCPU to the host.
Fields§
§reason: hv_exit_reason_tInformation about an exit from the vcpu to the host.
exception: hv_vcpu_exit_exception_tInformation about an exit exception from the vcpu to the host.
Trait Implementations§
Source§impl Clone for hv_vcpu_exit_t
impl Clone for hv_vcpu_exit_t
Source§fn clone(&self) -> hv_vcpu_exit_t
fn clone(&self) -> hv_vcpu_exit_t
Returns a duplicate 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 hv_vcpu_exit_t
impl Debug for hv_vcpu_exit_t
Source§impl Hash for hv_vcpu_exit_t
impl Hash for hv_vcpu_exit_t
Source§impl Ord for hv_vcpu_exit_t
impl Ord for hv_vcpu_exit_t
Source§fn cmp(&self, other: &hv_vcpu_exit_t) -> Ordering
fn cmp(&self, other: &hv_vcpu_exit_t) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for hv_vcpu_exit_t
impl PartialEq for hv_vcpu_exit_t
Source§impl PartialOrd for hv_vcpu_exit_t
impl PartialOrd for hv_vcpu_exit_t
impl Copy for hv_vcpu_exit_t
impl Eq for hv_vcpu_exit_t
impl StructuralPartialEq for hv_vcpu_exit_t
Auto Trait Implementations§
impl Freeze for hv_vcpu_exit_t
impl RefUnwindSafe for hv_vcpu_exit_t
impl Send for hv_vcpu_exit_t
impl Sync for hv_vcpu_exit_t
impl Unpin for hv_vcpu_exit_t
impl UnwindSafe for hv_vcpu_exit_t
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