Struct nnsdk::os::UserExceptionInfo

source ·
#[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: u64§FpuRegisters: [FpuRegister; 32]

< 32 general-purpose NEON registers.

§PState: u32

< pstate & 0xFF0FFE20

§AFSR0: u32§AFSR1: u32§ESR: u32§FAR: CpuRegister

< Fault Address Register.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.