#[repr(u16)]
pub enum Interrupt {
Show 15 variants RESET = 0, INT0 = 1, PCINT0 = 2, TIMER1_COMPA = 3, TIMER1_OVF = 4, TIMER0_OVF = 5, EE_RDY = 6, ANA_COMP = 7, ADC = 8, TIMER1_COMPB = 9, TIMER0_COMPA = 10, TIMER0_COMPB = 11, WDT = 12, USI_START = 13, USI_OVF = 14,
}
Expand description

Enumeration of all the interrupts.

Variants§

§

RESET = 0

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

§

INT0 = 1

1 - External Interrupt 0

§

PCINT0 = 2

2 - Pin change Interrupt Request 0

§

TIMER1_COMPA = 3

3 - Timer/Counter1 Compare Match 1A

§

TIMER1_OVF = 4

4 - Timer/Counter1 Overflow

§

TIMER0_OVF = 5

5 - Timer/Counter0 Overflow

§

EE_RDY = 6

6 - EEPROM Ready

§

ANA_COMP = 7

7 - Analog comparator

§

ADC = 8

8 - ADC Conversion ready

§

TIMER1_COMPB = 9

9 - Timer/Counter1 Compare Match B

§

TIMER0_COMPA = 10

10 - Timer/Counter0 Compare Match A

§

TIMER0_COMPB = 11

11 - Timer/Counter0 Compare Match B

§

WDT = 12

12 - Watchdog Time-out

§

USI_START = 13

13 - USI START

§

USI_OVF = 14

14 - USI Overflow

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.