#[repr(u16)]
pub enum Interrupt {
Show 24 variants SUPC, RSTC, RTC, RTT, WDT, PMC, EFC0, UART0, UART1, PIOA, PIOB, USART0, TWI0, TWI1, SPI, SSC, TC0, TC1, TC2, ADC, PWM, CRCCU, ACC, UDP,
}
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

§

EFC0

6 - EFC0

§

UART0

8 - UART0

§

UART1

9 - UART1

§

PIOA

11 - PIOA

§

PIOB

12 - PIOB

§

USART0

14 - USART0

§

TWI0

19 - TWI0

§

TWI1

20 - TWI1

§

SPI

21 - SPI

§

SSC

22 - SSC

§

TC0

23 - TC0

§

TC1

24 - TC1

§

TC2

25 - TC2

§

ADC

29 - ADC

§

PWM

31 - PWM

§

CRCCU

32 - CRCCU

§

ACC

33 - ACC

§

UDP

34 - UDP

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.