Enum cortex_m::exception::Exception
[−]
[src]
pub enum Exception {
ThreadMode,
Nmi,
HardFault,
MemoryManagementFault,
BusFault,
UsageFault,
SVCall,
PendSV,
Systick,
Interrupt(u8),
// some variants omitted
}Enumeration of all exceptions
Variants
ThreadModei.e. currently not servicing an exception
NmiNon-maskable interrupt.
HardFaultAll class of fault.
MemoryManagementFaultMemory management.
BusFaultPre-fetch fault, memory access fault.
UsageFaultUndefined instruction or illegal state.
SVCallSystem service call via SWI instruction
PendSVPendable request for system service
SystickSystem tick timer
Interrupt(u8)An interrupt
Methods
impl Exception[src]
Trait Implementations
impl Clone for Exception[src]
fn clone(&self) -> Exception[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more