#[repr(C)]pub struct pt_asid {
pub size: usize,
pub cr3: u64,
pub vmcs: u64,
}Expand description
An Intel PT address space identifier.
This identifies a particular address space when adding file sections or when reading memory.
Fields§
§size: usizeThe size of this object - set to sizeof(struct pt_asid).
cr3: u64The CR3 value.
vmcs: u64The VMCS Base address.
Trait Implementations§
impl Copy for pt_asid
impl Eq for pt_asid
impl StructuralPartialEq for pt_asid
Auto Trait Implementations§
impl Freeze for pt_asid
impl RefUnwindSafe for pt_asid
impl Send for pt_asid
impl Sync for pt_asid
impl Unpin for pt_asid
impl UnwindSafe for pt_asid
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