[][src]Union libpapi_sys::PAPI_option_t

#[repr(C)]pub union PAPI_option_t {
    pub preload: PAPI_preload_info_t,
    pub debug: PAPI_debug_option_t,
    pub inherit: PAPI_inherit_option_t,
    pub granularity: PAPI_granularity_option_t,
    pub defgranularity: PAPI_granularity_option_t,
    pub domain: PAPI_domain_option_t,
    pub defdomain: PAPI_domain_option_t,
    pub attach: PAPI_attach_option_t,
    pub cpu: PAPI_cpu_option_t,
    pub multiplex: PAPI_multiplex_option_t,
    pub itimer: PAPI_itimer_option_t,
    pub hw_info: *mut PAPI_hw_info_t,
    pub shlib_info: *mut PAPI_shlib_info_t,
    pub exe_info: *mut PAPI_exe_info_t,
    pub cmp_info: *mut PAPI_component_info_t,
    pub addr: PAPI_addr_range_option_t,
    pub events_file: PAPI_user_defined_events_file_t,
    // some fields omitted
}

@ingroup papi_data_structures @union PAPI_option_t @brief A pointer to the following is passed to PAPI_set/get_opt()

Fields

preload: PAPI_preload_info_tdebug: PAPI_debug_option_tinherit: PAPI_inherit_option_tgranularity: PAPI_granularity_option_tdefgranularity: PAPI_granularity_option_tdomain: PAPI_domain_option_tdefdomain: PAPI_domain_option_tattach: PAPI_attach_option_tcpu: PAPI_cpu_option_tmultiplex: PAPI_multiplex_option_titimer: PAPI_itimer_option_thw_info: *mut PAPI_hw_info_tshlib_info: *mut PAPI_shlib_info_texe_info: *mut PAPI_exe_info_tcmp_info: *mut PAPI_component_info_taddr: PAPI_addr_range_option_tevents_file: PAPI_user_defined_events_file_t

Trait Implementations

impl Clone for PAPI_option_t[src]

impl Copy for PAPI_option_t[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.