#[repr(C)]pub struct hv_vcpu_exit_exception_t {
pub syndrome: u64,
pub virtual_address: u64,
pub physical_address: u64,
}Expand description
The structure that describes information about an exit from the virtual CPU (vCPU) to the host.
Fields§
§syndrome: u64The vCPU exception syndrome causing the exception.
virtual_address: u64The vCPU virtual address of the exception.
physical_address: u64The intermediate physical address of the exception in the client.
Trait Implementations§
Source§impl Clone for hv_vcpu_exit_exception_t
impl Clone for hv_vcpu_exit_exception_t
Source§fn clone(&self) -> hv_vcpu_exit_exception_t
fn clone(&self) -> hv_vcpu_exit_exception_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_exception_t
impl Debug for hv_vcpu_exit_exception_t
Source§impl Hash for hv_vcpu_exit_exception_t
impl Hash for hv_vcpu_exit_exception_t
Source§impl Ord for hv_vcpu_exit_exception_t
impl Ord for hv_vcpu_exit_exception_t
Source§fn cmp(&self, other: &hv_vcpu_exit_exception_t) -> Ordering
fn cmp(&self, other: &hv_vcpu_exit_exception_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_exception_t
impl PartialEq for hv_vcpu_exit_exception_t
Source§impl PartialOrd for hv_vcpu_exit_exception_t
impl PartialOrd for hv_vcpu_exit_exception_t
impl Copy for hv_vcpu_exit_exception_t
impl Eq for hv_vcpu_exit_exception_t
impl StructuralPartialEq for hv_vcpu_exit_exception_t
Auto Trait Implementations§
impl Freeze for hv_vcpu_exit_exception_t
impl RefUnwindSafe for hv_vcpu_exit_exception_t
impl Send for hv_vcpu_exit_exception_t
impl Sync for hv_vcpu_exit_exception_t
impl Unpin for hv_vcpu_exit_exception_t
impl UnwindSafe for hv_vcpu_exit_exception_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