#[repr(u16)]
pub enum Interrupt {
Show 26 variants RESET = 0, INT0 = 1, INT1 = 2, PCINT0 = 3, PCINT1 = 4, PCINT2 = 5, WDT = 6, TIMER2_COMPA = 7, TIMER2_COMPB = 8, TIMER2_OVF = 9, TIMER1_CAPT = 10, TIMER1_COMPA = 11, TIMER1_COMPB = 12, TIMER1_OVF = 13, TIMER0_COMPA = 14, TIMER0_COMPB = 15, TIMER0_OVF = 16, SPI_STC = 17, USART_RX = 18, USART_UDRE = 19, USART_TX = 20, ADC = 21, EE_READY = 22, ANALOG_COMP = 23, TWI = 24, SPM_READY = 25,
}
Expand description

Enumeration of all the interrupts.

Variants§

§

RESET = 0

0 - External Pin, Power-on Reset, Brown-out Reset and Watchdog Reset

§

INT0 = 1

1 - External Interrupt Request 0

§

INT1 = 2

2 - External Interrupt Request 1

§

PCINT0 = 3

3 - Pin Change Interrupt Request 0

§

PCINT1 = 4

4 - Pin Change Interrupt Request 1

§

PCINT2 = 5

5 - Pin Change Interrupt Request 2

§

WDT = 6

6 - Watchdog Time-out Interrupt

§

TIMER2_COMPA = 7

7 - Timer/Counter2 Compare Match A

§

TIMER2_COMPB = 8

8 - Timer/Counter2 Compare Match B

§

TIMER2_OVF = 9

9 - Timer/Counter2 Overflow

§

TIMER1_CAPT = 10

10 - Timer/Counter1 Capture Event

§

TIMER1_COMPA = 11

11 - Timer/Counter1 Compare Match A

§

TIMER1_COMPB = 12

12 - Timer/Counter1 Compare Match B

§

TIMER1_OVF = 13

13 - Timer/Counter1 Overflow

§

TIMER0_COMPA = 14

14 - TimerCounter0 Compare Match A

§

TIMER0_COMPB = 15

15 - TimerCounter0 Compare Match B

§

TIMER0_OVF = 16

16 - Timer/Couner0 Overflow

§

SPI_STC = 17

17 - SPI Serial Transfer Complete

§

USART_RX = 18

18 - USART Rx Complete

§

USART_UDRE = 19

19 - USART, Data Register Empty

§

USART_TX = 20

20 - USART Tx Complete

§

ADC = 21

21 - ADC Conversion Complete

§

EE_READY = 22

22 - EEPROM Ready

§

ANALOG_COMP = 23

23 - Analog Comparator

§

TWI = 24

24 - Two-wire Serial Interface

§

SPM_READY = 25

25 - Store Program Memory Read

Implementations§

source§

impl Interrupt

source

pub fn try_from(value: u8) -> Result<Interrupt, TryFromInterruptError>

Attempt to convert a given value into an Interrupt

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<(), Error>

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

impl PartialEq 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 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>,

§

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>,

§

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.