[][src]Enum interrupture_stm32f7x6::Priority

#[repr(u8)]
pub enum Priority { P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15, }

Possible interrupt priorities of the stm32f7.

Lower number means higher priority: P1 has a higher priority than e.g. P2, P5, ...

Variants

P0

Priority 0

P1

Priority 1

P2

Priority 2

P3

Priority 3

P4

Priority 4

P5

Priority 5

P6

Priority 6

P7

Priority 7

P8

Priority 8

P9

Priority 9

P10

Priority 10

P11

Priority 11

P12

Priority 12

P13

Priority 13

P14

Priority 14

P15

Priority 15

Trait Implementations

impl PartialEq<Priority> for Priority[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for Priority[src]

impl Copy for Priority[src]

impl Debug for Priority[src]

impl Clone for Priority[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Priority

impl Sync for Priority

Blanket Implementations

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> Same for T

type Output = T

Should always be Self