[][src]Enum pir_8_emu::isa::instruction::InstructionRegisterPair

pub enum InstructionRegisterPair {
    Ab,
    Cd,
}

The R bit indicates the register pair; 0 for A & B and 1 for C & D.

Variants

Ab
Cd

Trait Implementations

impl Clone for InstructionRegisterPair[src]

impl Copy for InstructionRegisterPair[src]

impl Debug for InstructionRegisterPair[src]

impl Display for InstructionRegisterPair[src]

impl Eq for InstructionRegisterPair[src]

impl From<bool> for InstructionRegisterPair[src]

impl Hash for InstructionRegisterPair[src]

impl Ord for InstructionRegisterPair[src]

impl PartialEq<InstructionRegisterPair> for InstructionRegisterPair[src]

impl PartialOrd<InstructionRegisterPair> for InstructionRegisterPair[src]

impl StructuralEq for InstructionRegisterPair[src]

impl StructuralPartialEq for InstructionRegisterPair[src]

Auto Trait Implementations

impl RefUnwindSafe for InstructionRegisterPair

impl Send for InstructionRegisterPair

impl Sync for InstructionRegisterPair

impl Unpin for InstructionRegisterPair

impl UnwindSafe for InstructionRegisterPair

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.