[][src]Struct linux_perf_file_reader::EventAttributes

#[repr(C)]pub struct EventAttributes {
    pub perf_type: PerfType,
    pub size: u32,
    pub config: u64,
    pub sample_period_or_freq: u64,
    pub sample_format: SampleFormat,
    pub read_format: ReadFormat,
    pub flags: AttrFlags,
    pub wakeup_events_or_watermakr: u32,
    pub bp_type: u32,
    pub bp_addr_or_config1: u32,
    pub bp_len_or_config2: u64,
    pub branch_sample_type: u64,
    pub sample_regs_user: u64,
    pub sample_stack_user: u32,
    pub clockid: i32,
    pub sample_regs_intr: u64,
    pub aux_watermark: u32,
    pub sample_max_stack: u16,
    pub reserved_2: u16,
}

Fields

perf_type: PerfTypesize: u32config: u64sample_period_or_freq: u64sample_format: SampleFormatread_format: ReadFormatflags: AttrFlagswakeup_events_or_watermakr: u32bp_type: u32bp_addr_or_config1: u32bp_len_or_config2: u64branch_sample_type: u64sample_regs_user: u64sample_stack_user: u32clockid: i32sample_regs_intr: u64aux_watermark: u32sample_max_stack: u16reserved_2: u16

Trait Implementations

impl Debug for EventAttributes[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, 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.