[][src]Enum zeerust::ops::Location16

pub enum Location16 {
    Reg(Reg16),
    RegIndirect(Reg16),
    ImmediateIndirect(u16),
    Immediate(u16),
}

Anywhere a 16-bit value could could come from or be stored to

Variants

Reg(Reg16)

A 16-bit combined 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(u16)

A literal number

Trait Implementations

impl PartialEq<Location16> for Location16[src]

impl Clone for Location16[src]

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

Performs copy-assignment from source. Read more

impl Debug for Location16[src]

Auto Trait Implementations

impl Send for Location16

impl Sync for Location16

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]