Enum cortex_m::peripheral::scb::Exception
source · pub enum Exception {
NonMaskableInt,
HardFault,
MemoryManagement,
BusFault,
UsageFault,
SVCall,
DebugMonitor,
PendSV,
SysTick,
}
Expand description
Processor core exceptions (internal interrupts)
Variants§
NonMaskableInt
Non maskable interrupt
HardFault
Hard fault interrupt
MemoryManagement
Memory management interrupt (not present on Cortex-M0 variants)
BusFault
Bus fault interrupt (not present on Cortex-M0 variants)
UsageFault
Usage fault interrupt (not present on Cortex-M0 variants)
SVCall
SV call interrupt
DebugMonitor
Debug monitor interrupt (not present on Cortex-M0 variants)
PendSV
Pend SV interrupt
SysTick
System Tick interrupt
Implementations§
Trait Implementations§
source§impl PartialEq for Exception
impl PartialEq for Exception
impl Copy for Exception
impl Eq for Exception
impl StructuralPartialEq for Exception
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