[][src]Struct xed_sys::xed_simple_flag_s

#[repr(C)]pub struct xed_simple_flag_s {
    pub nflags: u8,
    pub may_write: u8,
    pub must_write: u8,
    pub read: xed_flag_set_t,
    pub written: xed_flag_set_t,
    pub undefined: xed_flag_set_t,
    pub fa_index: u16,
}

@ingroup FLAGS A collection of #xed_flag_action_t's and unions of read and written flags

Fields

nflags: u8

number of flag actions associated with this record

may_write: u8must_write: u8read: xed_flag_set_t

union of read flags

written: xed_flag_set_t

union of written flags (includes undefined flags);

undefined: xed_flag_set_t

union of undefined flags;

fa_index: u16

Trait Implementations

impl Clone for xed_simple_flag_s[src]

impl Copy for xed_simple_flag_s[src]

impl Debug for xed_simple_flag_s[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.