[][src]Enum lc3_isa::PriorityLevel

pub enum PriorityLevel {
    PL0,
    PL1,
    PL2,
    PL3,
    PL4,
    PL5,
    PL6,
    PL7,
}

Variants

PL0
PL1
PL2
PL3
PL4
PL5
PL6
PL7

Implementations

impl PriorityLevel[src]

pub const NUM_LEVELS: usize[src]

pub const LEVELS: [PriorityLevel; 8][src]

Trait Implementations

impl Clone for PriorityLevel[src]

impl Copy for PriorityLevel[src]

impl Debug for PriorityLevel[src]

impl<'de> Deserialize<'de> for PriorityLevel[src]

impl Display for PriorityLevel[src]

impl Eq for PriorityLevel[src]

impl<'_> From<&'_ PriorityLevel> for u8[src]

impl From<PriorityLevel> for u8[src]

impl Hash for PriorityLevel[src]

impl Ord for PriorityLevel[src]

impl PartialEq<PriorityLevel> for PriorityLevel[src]

impl PartialOrd<PriorityLevel> for PriorityLevel[src]

impl Serialize for PriorityLevel[src]

impl StructuralEq for PriorityLevel[src]

impl StructuralPartialEq for PriorityLevel[src]

impl TryFrom<u8> for PriorityLevel[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.