[][src]Union xed_sys::xed_interface::xed_union64_t

#[repr(C)]
pub union xed_union64_t {
    pub byte: [u8; 8],
    pub word: [u16; 4],
    pub dword: [u32; 2],
    pub s_byte: [i8; 8],
    pub s_word: [i16; 4],
    pub s_dword: [i32; 2],
    pub b: xed_union64_t__bindgen_ty_1,
    pub w: xed_union64_t__bindgen_ty_2,
    pub s: xed_union64_t__bindgen_ty_3,
    pub u64: u64,
    pub i64: i64,
    // some fields omitted
}

Fields

byte: [u8; 8]word: [u16; 4]dword: [u32; 2]s_byte: [i8; 8]s_word: [i16; 4]s_dword: [i32; 2]b: xed_union64_t__bindgen_ty_1w: xed_union64_t__bindgen_ty_2s: xed_union64_t__bindgen_ty_3u64: u64i64: i64

Trait Implementations

impl Copy for xed_union64_t[src]

impl Clone for xed_union64_t[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for xed_union64_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]