[][src]Struct libpapi_sys::_papi_addr_range_option

#[repr(C)]pub struct _papi_addr_range_option {
    pub eventset: c_int,
    pub start: caddr_t,
    pub end: caddr_t,
    pub start_off: c_int,
    pub end_off: c_int,
}

@ingroup papi_data_structures @brief address range specification for range restricted counting if both are zero, range is disabled

Fields

eventset: c_int

< eventset to restrict

start: caddr_t

< user requested start address of an address range

end: caddr_t

< user requested end address of an address range

start_off: c_int

< hardware specified offset from start address

end_off: c_int

< hardware specified offset from end address

Trait Implementations

impl Clone for _papi_addr_range_option[src]

impl Copy for _papi_addr_range_option[src]

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