#[repr(C)]pub struct pt_packet_evd {
pub type_: pt_evd_type,
pub payload: u64,
}Expand description
A EVD packet.
Fields§
§type_: pt_evd_typeThe type of control-flow event.
payload: u64The payload depending on the type:
0x00: page fault linear address (cr2). 0x01: vmx exit qualification. 0x02: vmx exit reason.
Trait Implementations§
Source§impl Clone for pt_packet_evd
impl Clone for pt_packet_evd
Source§fn clone(&self) -> pt_packet_evd
fn clone(&self) -> pt_packet_evd
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 pt_packet_evd
impl Debug for pt_packet_evd
impl Copy for pt_packet_evd
Auto Trait Implementations§
impl Freeze for pt_packet_evd
impl RefUnwindSafe for pt_packet_evd
impl Send for pt_packet_evd
impl Sync for pt_packet_evd
impl Unpin for pt_packet_evd
impl UnwindSafe for pt_packet_evd
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