[][src]Struct ndk_sys::sigcontext

#[repr(C)]pub struct sigcontext {
    pub trap_no: c_ulong,
    pub error_code: c_ulong,
    pub oldmask: c_ulong,
    pub arm_r0: c_ulong,
    pub arm_r1: c_ulong,
    pub arm_r2: c_ulong,
    pub arm_r3: c_ulong,
    pub arm_r4: c_ulong,
    pub arm_r5: c_ulong,
    pub arm_r6: c_ulong,
    pub arm_r7: c_ulong,
    pub arm_r8: c_ulong,
    pub arm_r9: c_ulong,
    pub arm_r10: c_ulong,
    pub arm_fp: c_ulong,
    pub arm_ip: c_ulong,
    pub arm_sp: c_ulong,
    pub arm_lr: c_ulong,
    pub arm_pc: c_ulong,
    pub arm_cpsr: c_ulong,
    pub fault_address: c_ulong,
}

Fields

trap_no: c_ulongerror_code: c_ulongoldmask: c_ulongarm_r0: c_ulongarm_r1: c_ulongarm_r2: c_ulongarm_r3: c_ulongarm_r4: c_ulongarm_r5: c_ulongarm_r6: c_ulongarm_r7: c_ulongarm_r8: c_ulongarm_r9: c_ulongarm_r10: c_ulongarm_fp: c_ulongarm_ip: c_ulongarm_sp: c_ulongarm_lr: c_ulongarm_pc: c_ulongarm_cpsr: c_ulongfault_address: c_ulong

Trait Implementations

impl Clone for sigcontext[src]

impl Copy for sigcontext[src]

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