[][src]Struct libpapi_sys::_papi_address_map

#[repr(C)]pub struct _papi_address_map {
    pub name: [c_char; 1024],
    pub text_start: caddr_t,
    pub text_end: caddr_t,
    pub data_start: caddr_t,
    pub data_end: caddr_t,
    pub bss_start: caddr_t,
    pub bss_end: caddr_t,
}

@ingroup papi_data_structures @brief get the executable's address space info

Fields

name: [c_char; 1024]text_start: caddr_t

< Start address of program text segment

text_end: caddr_t

< End address of program text segment

data_start: caddr_t

< Start address of program data segment

data_end: caddr_t

< End address of program data segment

bss_start: caddr_t

< Start address of program bss segment

bss_end: caddr_t

< End address of program bss segment

Trait Implementations

impl Clone for _papi_address_map[src]

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