pub enum Exception {
Show 18 variants
BranchThroughZero = 131_072,
UndefinedInstr = 131_073,
SoftwareInterrupt = 131_074,
PrefetchAbort = 131_075,
DataAbort = 131_076,
AddressException = 131_077,
IRQ = 131_078,
FIQ = 131_079,
BreakPoint = 131_104,
WatchPoint = 131_105,
StepComplete = 131_106,
RunTimeErrorUnknown = 131_107,
InternalError = 131_108,
UserInterruption = 131_109,
ApplicationExit = 131_110,
StackOverflow = 131_111,
DivisionByZero = 131_112,
OSSpecific = 131_113,
}
Expand description
This values are taken from section 5.5.2 of ADS Debug Target Guide (DUI0058).
Variants§
BranchThroughZero = 131_072
UndefinedInstr = 131_073
SoftwareInterrupt = 131_074
PrefetchAbort = 131_075
DataAbort = 131_076
AddressException = 131_077
IRQ = 131_078
FIQ = 131_079
BreakPoint = 131_104
WatchPoint = 131_105
StepComplete = 131_106
RunTimeErrorUnknown = 131_107
InternalError = 131_108
UserInterruption = 131_109
ApplicationExit = 131_110
StackOverflow = 131_111
DivisionByZero = 131_112
OSSpecific = 131_113
Auto Trait Implementations§
impl Freeze for Exception
impl RefUnwindSafe for Exception
impl Send for Exception
impl Sync for Exception
impl Unpin for Exception
impl UnwindSafe for Exception
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more