[][src]Enum zeerust::ops::Location8

pub enum Location8 {
    Reg(Reg8),
    RegIndirect(Reg16),
    ImmediateIndirect(u16),
    Immediate(u8),
}

Anywhere an 8-bit value could could come from or be stored to

Variants

Reg(Reg8)

A register

RegIndirect(Reg16)

A location in memory, pointed to by a 16-bit register

ImmediateIndirect(u16)

A location in memory, pointed to by a literal number

Immediate(u8)

A literal number

Trait Implementations

impl PartialEq<Location8> for Location8[src]

impl Clone for Location8[src]

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

Performs copy-assignment from source. Read more

impl Debug for Location8[src]

Auto Trait Implementations

impl Send for Location8

impl Sync for Location8

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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, 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> 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]