Enum IRQn

Source
#[repr(u8)]
pub enum IRQn {
Show 29 variants WWDG = 0, RTC_TAMP = 2, FLASH = 3, RCC = 4, EXTI0_1 = 5, EXTI2_3 = 6, EXTI4_15 = 7, DMA1_Channel1 = 9, DMA1_Channel2_3 = 10, DMA1_Ch4_5_DMAMUX1_OVR = 11, ADC = 12, TIM1_BRK_UP_TRG_COM = 13, TIM1_CC = 14, TIM2 = 15, TIM3 = 16, TIM14 = 19, TIM16 = 21, TIM17 = 22, I2C1 = 23, I2C2 = 24, SPI1 = 25, SPI2 = 26, USART1 = 27, USART2 = 28, LPTIM1 = 29, LPTIM2 = 30, TIM6_DAC_LPTIM1 = 31, TIM7_LPTIM2 = 32, LPUART1 = 33,
}

Variants§

§

WWDG = 0

§

RTC_TAMP = 2

§

FLASH = 3

§

RCC = 4

§

EXTI0_1 = 5

§

EXTI2_3 = 6

§

EXTI4_15 = 7

§

DMA1_Channel1 = 9

§

DMA1_Channel2_3 = 10

§

DMA1_Ch4_5_DMAMUX1_OVR = 11

§

ADC = 12

§

TIM1_BRK_UP_TRG_COM = 13

§

TIM1_CC = 14

§

TIM2 = 15

§

TIM3 = 16

§

TIM14 = 19

§

TIM16 = 21

§

TIM17 = 22

§

I2C1 = 23

§

I2C2 = 24

§

SPI1 = 25

§

SPI2 = 26

§

USART1 = 27

§

USART2 = 28

§

LPTIM1 = 29

§

LPTIM2 = 30

§

TIM6_DAC_LPTIM1 = 31

§

TIM7_LPTIM2 = 32

§

LPUART1 = 33

Auto Trait Implementations§

§

impl Freeze for IRQn

§

impl RefUnwindSafe for IRQn

§

impl Send for IRQn

§

impl Sync for IRQn

§

impl Unpin for IRQn

§

impl UnwindSafe for IRQn

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.