Embassy
rp-pac

Crates

git

Versions

default

Flavors

Enum rp_pac::Interrupt

source ·
pub enum Interrupt {
Show 32 variants TIMER_IRQ_0, TIMER_IRQ_1, TIMER_IRQ_2, TIMER_IRQ_3, PWM_IRQ_WRAP, USBCTRL_IRQ, XIP_IRQ, PIO0_IRQ_0, PIO0_IRQ_1, PIO1_IRQ_0, PIO1_IRQ_1, DMA_IRQ_0, DMA_IRQ_1, IO_IRQ_BANK0, IO_IRQ_QSPI, SIO_IRQ_PROC0, SIO_IRQ_PROC1, CLOCKS_IRQ, SPI0_IRQ, SPI1_IRQ, UART0_IRQ, UART1_IRQ, ADC_IRQ_FIFO, I2C0_IRQ, I2C1_IRQ, RTC_IRQ, SWI_IRQ_0, SWI_IRQ_1, SWI_IRQ_2, SWI_IRQ_3, SWI_IRQ_4, SWI_IRQ_5,
}

Variants§

§

TIMER_IRQ_0

0 - TIMER_IRQ_0

§

TIMER_IRQ_1

1 - TIMER_IRQ_1

§

TIMER_IRQ_2

2 - TIMER_IRQ_2

§

TIMER_IRQ_3

3 - TIMER_IRQ_3

§

PWM_IRQ_WRAP

4 - PWM_IRQ_WRAP

§

USBCTRL_IRQ

5 - USBCTRL_IRQ

§

XIP_IRQ

6 - XIP_IRQ

§

PIO0_IRQ_0

7 - PIO0_IRQ_0

§

PIO0_IRQ_1

8 - PIO0_IRQ_1

§

PIO1_IRQ_0

9 - PIO1_IRQ_0

§

PIO1_IRQ_1

10 - PIO1_IRQ_1

§

DMA_IRQ_0

11 - DMA_IRQ_0

§

DMA_IRQ_1

12 - DMA_IRQ_1

§

IO_IRQ_BANK0

13 - IO_IRQ_BANK0

§

IO_IRQ_QSPI

14 - IO_IRQ_QSPI

§

SIO_IRQ_PROC0

15 - SIO_IRQ_PROC0

§

SIO_IRQ_PROC1

16 - SIO_IRQ_PROC1

§

CLOCKS_IRQ

17 - CLOCKS_IRQ

§

SPI0_IRQ

18 - SPI0_IRQ

§

SPI1_IRQ

19 - SPI1_IRQ

§

UART0_IRQ

20 - UART0_IRQ

§

UART1_IRQ

21 - UART1_IRQ

§

ADC_IRQ_FIFO

22 - ADC_IRQ_FIFO

§

I2C0_IRQ

23 - I2C0_IRQ

§

I2C1_IRQ

24 - I2C1_IRQ

§

RTC_IRQ

25 - RTC_IRQ

§

SWI_IRQ_0

26 - SWI_IRQ_0

§

SWI_IRQ_1

27 - SWI_IRQ_1

§

SWI_IRQ_2

28 - SWI_IRQ_2

§

SWI_IRQ_3

29 - SWI_IRQ_3

§

SWI_IRQ_4

30 - SWI_IRQ_4

§

SWI_IRQ_5

31 - SWI_IRQ_5

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.