[][src]Struct processortrace::TraceControllerSettings

pub struct TraceControllerSettings {
    pub disable_branch: bool,
    pub user: bool,
    pub kernel: bool,
    pub tsc_en: bool,
    pub dis_retc: bool,
    pub clear_on_start: bool,
    pub cyc_thresh: u64,
    pub mtc_freq: u64,
    pub psb_freq: u64,
    pub addr0_cfg: FilterConfig,
    pub addr1_cfg: FilterConfig,
    pub addr2_cfg: FilterConfig,
    pub addr3_cfg: FilterConfig,
}

Fields

disable_branch: bool

Don't enable branch tracing (if supported)

user: bool

Set to false to avoid tracing user space

kernel: bool

Set to false to avoid tracing kernel space

tsc_en: bool

Set to false to not use TSC

dis_retc: bool

Set to false to disable return compression

clear_on_start: bool

Clear PT buffer before start

cyc_thresh: u64

Send cycle packets at every 2^(n-1) cycles (if supported)

mtc_freq: u64

Enable MTC packets at frequency 2^(n-1) (if supported)

psb_freq: u64

Send PSB packets every 2K^n bytes (if supported)

addr0_cfg: FilterConfig

Mode of address range 0 filter

addr1_cfg: FilterConfig

Mode of address range 1 filter

addr2_cfg: FilterConfig

Mode of address range 2 filter

addr3_cfg: FilterConfig

Mode of address range 3 filter

Trait Implementations

impl Clone for TraceControllerSettings[src]

impl Copy for TraceControllerSettings[src]

impl Debug for TraceControllerSettings[src]

impl Eq for TraceControllerSettings[src]

impl PartialEq<TraceControllerSettings> for TraceControllerSettings[src]

impl StructuralEq for TraceControllerSettings[src]

impl StructuralPartialEq for TraceControllerSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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 = Infallible

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.