Skip to main content

Interrupt

Enum Interrupt 

Source
#[repr(u16)]
pub enum Interrupt {
Show 14 variants TIMER0 = 0, TIMER1 = 1, USB0 = 2, USB0_EP_CONTROL = 3, USB0_EP_IN = 4, USB0_EP_OUT = 5, USB1 = 6, USB1_EP_CONTROL = 7, USB1_EP_IN = 8, USB1_EP_OUT = 9, USB2 = 10, USB2_EP_CONTROL = 11, USB2_EP_IN = 12, USB2_EP_OUT = 13,
}
Expand description

Enumeration of all the interrupts.

Variants§

§

TIMER0 = 0

0 - timer0

§

TIMER1 = 1

1 - timer1

§

USB0 = 2

2 - usb0

§

USB0_EP_CONTROL = 3

3 - usb0_ep_control

§

USB0_EP_IN = 4

4 - usb0_ep_in

§

USB0_EP_OUT = 5

5 - usb0_ep_out

§

USB1 = 6

6 - usb1

§

USB1_EP_CONTROL = 7

7 - usb1_ep_control

§

USB1_EP_IN = 8

8 - usb1_ep_in

§

USB1_EP_OUT = 9

9 - usb1_ep_out

§

USB2 = 10

10 - usb2

§

USB2_EP_CONTROL = 11

11 - usb2_ep_control

§

USB2_EP_IN = 12

12 - usb2_ep_in

§

USB2_EP_OUT = 13

13 - usb2_ep_out

Implementations§

Source§

impl Interrupt

Source

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

Attempt to convert a given value into an Interrupt

Trait Implementations§

Source§

impl Clone for Interrupt

Source§

fn clone(&self) -> Interrupt

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Interrupt

Source§

impl Debug for Interrupt

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

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

impl Eq for Interrupt

Source§

impl PartialEq for Interrupt

Source§

fn eq(&self, other: &Interrupt) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.