[][src]Enum iced_x86::TupleType

#[non_exhaustive]pub enum TupleType {
    N1,
    N2,
    N4,
    N8,
    N16,
    N32,
    N64,
    N8b4,
    N16b4,
    N32b4,
    N64b4,
    N16b8,
    N32b8,
    N64b8,
}

Tuple type (EVEX) which can be used to get the disp8 scale factor N

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
N1

N = 1

N2

N = 2

N4

N = 4

N8

N = 8

N16

N = 16

N32

N = 32

N64

N = 64

N8b4

N = b ? 4 : 8

N16b4

N = b ? 4 : 16

N32b4

N = b ? 4 : 32

N64b4

N = b ? 4 : 64

N16b8

N = b ? 8 : 16

N32b8

N = b ? 8 : 32

N64b8

N = b ? 8 : 64

Trait Implementations

impl Clone for TupleType[src]

impl Copy for TupleType[src]

impl Debug for TupleType[src]

impl Default for TupleType[src]

impl Eq for TupleType[src]

impl Hash for TupleType[src]

impl Ord for TupleType[src]

impl PartialEq<TupleType> for TupleType[src]

impl PartialOrd<TupleType> for TupleType[src]

impl StructuralEq for TupleType[src]

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