[][src]Enum dynasmrt::x86::Rd

pub enum Rd {
    EAX,
    ECX,
    EDX,
    EBX,
    ESP,
    EBP,
    ESI,
    EDI,
}

1, 2 or 4-byte general purpose "double-word" registers.

EIP does not appear here as it cannot be addressed dynamically.

Variants

EAX
ECX
EDX
EBX
ESP
EBP
ESI
EDI

Trait Implementations

impl Clone for Rd[src]

impl Copy for Rd[src]

impl Debug for Rd[src]

impl Eq for Rd[src]

impl Hash for Rd[src]

impl PartialEq<Rd> for Rd[src]

impl Register for Rd[src]

impl StructuralEq for Rd[src]

impl StructuralPartialEq for Rd[src]

Auto Trait Implementations

impl RefUnwindSafe for Rd[src]

impl Send for Rd[src]

impl Sync for Rd[src]

impl Unpin for Rd[src]

impl UnwindSafe for Rd[src]

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