[][src]Struct libipt_sys::pt_config

#[repr(C)]
pub struct pt_config {
    pub size: usize,
    pub begin: *mut u8,
    pub end: *mut u8,
    pub decode: pt_config__bindgen_ty_1,
    pub cpu: pt_cpu,
    pub errata: pt_errata,
    pub cpuid_0x15_eax: u32,
    pub cpuid_0x15_ebx: u32,
    pub mtc_freq: u8,
    pub nom_freq: u8,
    pub flags: pt_conf_flags,
    pub addr_filter: pt_conf_addr_filter,
}

An Intel PT decoder configuration.

Fields

size: usize

The size of the config structure in bytes.

begin: *mut u8

The trace buffer begin address.

end: *mut u8

The trace buffer end address.

decode: pt_config__bindgen_ty_1cpu: pt_cpu

The cpu on which Intel PT has been recorded.

errata: pt_errata

The errata to apply when encoding or decoding Intel PT.

cpuid_0x15_eax: u32cpuid_0x15_ebx: u32mtc_freq: u8nom_freq: u8flags: pt_conf_flags

A collection of decoder-specific flags.

addr_filter: pt_conf_addr_filter

The address filter configuration.

Trait Implementations

impl Clone for pt_config[src]

impl Copy for pt_config[src]

Auto Trait Implementations

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]