#[repr(C)]
pub struct sigcontext {
Show 21 fields 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.