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

#[repr(C)]pub enum ElementType {
    INVALID,
    STRUCT,
    UINT,
    INT,
    FLOAT16,
    FLOAT32,
    FLOAT64,
    FLOAT80,
    LONGBCD,
    CC,
}

Defines the ZydisElementType enum.

Variants

INVALID
STRUCT

A struct type.

UINT

Unsigned integer value.

INT

Signed integer value.

FLOAT16

16-bit floating point value (half).

FLOAT32

32-bit floating point value (single).

FLOAT64

64-bit floating point value (double).

FLOAT80

80-bit floating point value (extended).

LONGBCD

Binary coded decimal value.

CC

A condition code (e.g. used by CMPPD, VCMPPD, ...).

Trait Implementations

impl Clone for ElementType[src]

impl Copy for ElementType[src]

impl Debug for ElementType[src]

impl Eq for ElementType[src]

impl Hash for ElementType[src]

impl PartialEq<ElementType> for ElementType[src]

impl StructuralEq for ElementType[src]

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