[][src]Struct libpapi_sys::_papi_sprofil

#[repr(C)]pub struct _papi_sprofil {
    pub pr_base: *mut c_void,
    pub pr_size: c_uint,
    pub pr_off: caddr_t,
    pub pr_scale: c_uint,
}

@ingroup papi_data_structures

Fields

pr_base: *mut c_void

< buffer base

pr_size: c_uint

< buffer size

pr_off: caddr_t

< pc start address (offset)

pr_scale: c_uint

< pc scaling factor: fixed point fraction 0xffff ~= 1, 0x8000 == .5, 0x4000 == .25, etc. also, two extensions 0x1000 == 1, 0x2000 == 2

Trait Implementations

impl Clone for _papi_sprofil[src]

impl Copy for _papi_sprofil[src]

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