[][src]Struct libunwind_sys::unw_accessors

#[repr(C)]
pub struct unw_accessors {
    pub find_proc_info: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut unw_proc_info_t, arg4: c_int, arg5: *mut c_void) -> c_int>,
    pub put_unwind_info: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_proc_info_t, arg3: *mut c_void)>,
    pub get_dyn_info_list_addr: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_word_t, arg3: *mut c_void) -> c_int>,
    pub access_mem: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut unw_word_t, arg4: c_int, arg5: *mut c_void) -> c_int>,
    pub access_reg: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_regnum_t, arg3: *mut unw_word_t, arg4: c_int, arg5: *mut c_void) -> c_int>,
    pub access_fpreg: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_regnum_t, arg3: *mut unw_fpreg_t, arg4: c_int, arg5: *mut c_void) -> c_int>,
    pub resume: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_cursor_t, arg3: *mut c_void) -> c_int>,
    pub get_proc_name: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut c_char, arg4: usize, arg5: *mut unw_word_t, arg6: *mut c_void) -> c_int>,
}

Fields

find_proc_info: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut unw_proc_info_t, arg4: c_int, arg5: *mut c_void) -> c_int>put_unwind_info: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_proc_info_t, arg3: *mut c_void)>get_dyn_info_list_addr: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_word_t, arg3: *mut c_void) -> c_int>access_mem: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut unw_word_t, arg4: c_int, arg5: *mut c_void) -> c_int>access_reg: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_regnum_t, arg3: *mut unw_word_t, arg4: c_int, arg5: *mut c_void) -> c_int>access_fpreg: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_regnum_t, arg3: *mut unw_fpreg_t, arg4: c_int, arg5: *mut c_void) -> c_int>resume: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: *mut unw_cursor_t, arg3: *mut c_void) -> c_int>get_proc_name: Option<unsafe extern "C" fn(arg1: unw_addr_space_t, arg2: unw_word_t, arg3: *mut c_char, arg4: usize, arg5: *mut unw_word_t, arg6: *mut c_void) -> c_int>

Trait Implementations

impl Clone for unw_accessors[src]

impl Copy for unw_accessors[src]

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