#[repr(u16)]
pub enum Interrupt {
Show 30 variants SUPC, RSTC, RTC, RTT, WDT, PMC, EFC, UART0, UART1, UART2, PIOA, PIOB, PIOC, USART0, USART1, UART3, USART2, TWI0, TWI1, SPI, TWI2, TC0, TC1, TC2, TC3, TC4, TC5, ADC, DACC, PWM,
}
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

8 - UART0

§

UART1

9 - UART1

§

UART2

10 - UART2

§

PIOA

11 - PIOA

§

PIOB

12 - PIOB

§

PIOC

13 - PIOC

§

USART0

14 - USART0

§

USART1

15 - USART1

§

UART3

16 - UART3

§

USART2

17 - USART2

§

TWI0

19 - TWI0

§

TWI1

20 - TWI1

§

SPI

21 - SPI

§

TWI2

22 - TWI2

§

TC0

23 - TC0

§

TC1

24 - TC1

§

TC2

25 - TC2

§

TC3

26 - TC3

§

TC4

27 - TC4

§

TC5

28 - TC5

§

ADC

29 - ADC

§

DACC

30 - DACC

§

PWM

31 - PWM

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.