#[repr(C)]
#[repr(align(16))]
pub struct UserExceptionInfo {
Show 14 fields pub ErrorDescription: u32, pub pad: [u32; 3], pub CpuRegisters: [CpuRegister; 29], pub FP: CpuRegister, pub LR: CpuRegister, pub SP: CpuRegister, pub PC: CpuRegister, pub padding: u64, pub FpuRegisters: [FpuRegister; 32], pub PState: u32, pub AFSR0: u32, pub AFSR1: u32, pub ESR: u32, pub FAR: CpuRegister,
}

Fields

ErrorDescription: u32

< See \ref ThreadExceptionDesc.

pad: [u32; 3]CpuRegisters: [CpuRegister; 29]

< GPRs 0..28. Note: also contains AArch32 registers.

FP: CpuRegister

< Frame pointer.

LR: CpuRegister

< Link register.

SP: CpuRegister

< Stack pointer.

PC: CpuRegister

< Program counter (elr_el1).

padding: u64FpuRegisters: [FpuRegister; 32]

< 32 general-purpose NEON registers.

PState: u32

< pstate & 0xFF0FFE20

AFSR0: u32AFSR1: u32ESR: u32FAR: CpuRegister

< Fault Address Register.

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 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.