[][src]Struct nc::types::perf_event_mmap_page_cap_detail_t

#[repr(C)]
pub struct perf_event_mmap_page_cap_detail_t {
    pub cap_bit0: u8,
    pub cap_bit0_is_deprecated: u8,
    pub cap_user_rdpmc: u8,
    pub cap_user_time: u8,
    pub cap_user_time_zero: u8,
    // some fields omitted
}

Fields

cap_bit0: u8

Always 0, deprecated, see commit 860f085b74e9

cap_bit0_is_deprecated: u8

Always 1, signals that bit 0 is zero

cap_user_rdpmc: u8

The RDPMC instruction can be used to read counts

cap_user_time: u8

The time_* fields are used

cap_user_time_zero: u8

The time_zero field is used

Trait Implementations

impl Copy for perf_event_mmap_page_cap_detail_t[src]

impl Clone for perf_event_mmap_page_cap_detail_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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]

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

type Owned = T

The resulting type after obtaining ownership.