[][src]Struct libipt_sys::pt_asid

#[repr(C)]
pub struct pt_asid {
    pub size: usize,
    pub cr3: u64,
    pub vmcs: u64,
}

An Intel PT address space identifier.

This identifies a particular address space when adding file sections or when reading memory.

Fields

size: usize

The size of this object - set to sizeof(struct pt_asid).

cr3: u64

The CR3 value.

vmcs: u64

The VMCS Base address.

Trait Implementations

impl Clone for pt_asid[src]

impl Copy for pt_asid[src]

impl Debug for pt_asid[src]

Auto Trait Implementations

impl Send for pt_asid

impl Sync for pt_asid

impl Unpin for pt_asid

impl UnwindSafe for pt_asid

impl RefUnwindSafe for pt_asid

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]