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

i.e. currently not servicing an exception

Non-maskable interrupt.

All class of fault.

Memory management.

Pre-fetch fault, memory access fault.

Undefined instruction or illegal state.

System service call via SWI instruction

Pendable request for system service

System tick timer

An interrupt

Methods

impl Exception
[src]

Returns the kind of exception that's currently being serviced

Trait Implementations

impl Clone for Exception
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Exception
[src]

impl Debug for Exception
[src]

Formats the value using the given formatter.

impl Eq for Exception
[src]

impl PartialEq for Exception
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.