[][src]Enum lc3_isa::Reg

pub enum Reg {
    R0,
    R1,
    R2,
    R3,
    R4,
    R5,
    R6,
    R7,
}

Variants

R0
R1
R2
R3
R4
R5
R6
R7

Implementations

impl Reg[src]

pub const NUM_REGS: usize[src]

pub const REGS: [Reg; 8][src]

Trait Implementations

impl Clone for Reg[src]

impl Copy for Reg[src]

impl Debug for Reg[src]

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

impl Display for Reg[src]

impl Eq for Reg[src]

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

impl From<Reg> for u8[src]

impl Hash for Reg[src]

impl Ord for Reg[src]

impl PartialEq<Reg> for Reg[src]

impl PartialOrd<Reg> for Reg[src]

impl Serialize for Reg[src]

impl StructuralEq for Reg[src]

impl StructuralPartialEq for Reg[src]

impl TryFrom<u8> for Reg[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl Send for Reg

impl Sync for Reg

impl Unpin for Reg

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.