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

#[repr(C)]pub enum BroadcastMode {
    INVALID,
    _1_TO_2,
    _1_TO_4,
    _1_TO_8,
    _1_TO_16,
    _1_TO_32,
    _1_TO_64,
    _2_TO_4,
    _2_TO_8,
    _2_TO_16,
    _4_TO_8,
    _4_TO_16,
    _8_TO_16,
}

Defines the ZydisBroadcastMode enum.

Variants

INVALID
_1_TO_2
_1_TO_4
_1_TO_8
_1_TO_16
_1_TO_32
_1_TO_64
_2_TO_4
_2_TO_8
_2_TO_16
_4_TO_8
_4_TO_16
_8_TO_16

Trait Implementations

impl Clone for BroadcastMode[src]

impl Copy for BroadcastMode[src]

impl Debug for BroadcastMode[src]

impl Eq for BroadcastMode[src]

impl Hash for BroadcastMode[src]

impl PartialEq<BroadcastMode> for BroadcastMode[src]

impl StructuralEq for BroadcastMode[src]

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