#[repr(u16)]
pub enum Interrupt {
Show 31 variants SUPC, RSTC, RTC, RTT, WDT, PMC, EFC, UART0, PIOA, PIOB, PIOD, USART0, USART1, HSMCI, TWI0, TWI1, SPI, DMAC, TC0, TC1, TC2, AFEC0, AFEC1, DACC, ACC, UDP, PWM, CAN0, AES, GMAC, UART1,
}
Expand description

Enumeration of all the interrupts.

Variants§

§

SUPC

0 - SUPC

§

RSTC

1 - RSTC

§

RTC

2 - RTC

§

RTT

3 - RTT

§

WDT

4 - WDT

§

PMC

5 - PMC

§

EFC

6 - EFC

§

UART0

7 - UART0

§

PIOA

9 - PIOA

§

PIOB

10 - PIOB

§

PIOD

12 - PIOD

§

USART0

14 - USART0

§

USART1

15 - USART1

§

HSMCI

16 - HSMCI

§

TWI0

17 - TWI0

§

TWI1

18 - TWI1

§

SPI

19 - SPI

§

DMAC

20 - DMAC

§

TC0

21 - TC0

§

TC1

22 - TC1

§

TC2

23 - TC2

§

AFEC0

30 - AFEC0

§

AFEC1

31 - AFEC1

§

DACC

32 - DACC

§

ACC

33 - ACC

§

UDP

35 - UDP

§

PWM

36 - PWM

§

CAN0

37 - CAN0

§

AES

39 - AES

§

GMAC

44 - GMAC

§

UART1

45 - UART1

Trait Implementations§

source§

impl Clone for Interrupt

source§

fn clone(&self) -> Interrupt

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Interrupt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl InterruptNumber for Interrupt

source§

fn number(self) -> u16

Return the interrupt number associated with this variant. Read more
source§

impl PartialEq<Interrupt> for Interrupt

source§

fn eq(&self, other: &Interrupt) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Interrupt

source§

impl Eq for Interrupt

source§

impl StructuralEq for Interrupt

source§

impl StructuralPartialEq for Interrupt

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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.
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.
source§

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

Performs the conversion.