[][src]Enum dez80::register::SingleRegisterType

pub enum SingleRegisterType {
    A,
    F,
    B,
    C,
    D,
    E,
    H,
    L,
    IXH,
    IXL,
    IYH,
    IYL,
    PCH,
    PCL,
    SPH,
    SPL,
    I,
    R,
    W,
    Z,
    A_,
    F_,
    B_,
    C_,
    D_,
    E_,
    H_,
    L_,
}

Used to identify a single register in an implementation-independent manner.

Variants

A
F
B
C
D
E
H
L
IXH
IXL
IYH
IYL
PCH
PCL
SPH
SPL
I
R
W
Z
A_
F_
B_
C_
D_
E_
H_
L_

Implementations

impl SingleRegisterType[src]

Trait Implementations

impl Clone for SingleRegisterType[src]

impl Copy for SingleRegisterType[src]

impl Debug for SingleRegisterType[src]

impl Display for SingleRegisterType[src]

impl PartialEq<SingleRegisterType> for SingleRegisterType[src]

impl StructuralPartialEq for SingleRegisterType[src]

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> 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.