[][src]Enum zydis::enums::generated::OperandEncoding

#[repr(C)]pub enum OperandEncoding {
    NONE,
    MODRM_REG,
    MODRM_RM,
    OPCODE,
    NDSNDD,
    IS4,
    MASK,
    DISP8,
    DISP16,
    DISP32,
    DISP64,
    DISP16_32_64,
    DISP32_32_64,
    DISP16_32_32,
    UIMM8,
    UIMM16,
    UIMM32,
    UIMM64,
    UIMM16_32_64,
    UIMM32_32_64,
    UIMM16_32_32,
    SIMM8,
    SIMM16,
    SIMM32,
    SIMM64,
    SIMM16_32_64,
    SIMM32_32_64,
    SIMM16_32_32,
    JIMM8,
    JIMM16,
    JIMM32,
    JIMM64,
    JIMM16_32_64,
    JIMM32_32_64,
    JIMM16_32_32,
}

Defines the ZydisOperandEncoding enum.

Variants

NONE
MODRM_REG
MODRM_RM
OPCODE
NDSNDD
IS4
MASK
DISP8
DISP16
DISP32
DISP64
DISP16_32_64
DISP32_32_64
DISP16_32_32
UIMM8
UIMM16
UIMM32
UIMM64
UIMM16_32_64
UIMM32_32_64
UIMM16_32_32
SIMM8
SIMM16
SIMM32
SIMM64
SIMM16_32_64
SIMM32_32_64
SIMM16_32_32
JIMM8
JIMM16
JIMM32
JIMM64
JIMM16_32_64
JIMM32_32_64
JIMM16_32_32

Trait Implementations

impl Clone for OperandEncoding[src]

impl Copy for OperandEncoding[src]

impl Debug for OperandEncoding[src]

impl Eq for OperandEncoding[src]

impl Hash for OperandEncoding[src]

impl PartialEq<OperandEncoding> for OperandEncoding[src]

impl StructuralEq for OperandEncoding[src]

impl StructuralPartialEq for OperandEncoding[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, 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.