[][src]Enum x86::segmentation::DataSegmentType

#[repr(u8)]
pub enum DataSegmentType {
    ReadOnly,
    ReadOnlyAccessed,
    ReadWrite,
    ReadWriteAccessed,
    ReadExpand,
    ReadExpandAccessed,
    ReadWriteExpand,
    ReadWriteExpandAccessed,
}

Data Segment types for descriptors. See also Intel 3a, Table 3-1 Code- and Data-Segment Types.

Variants

ReadOnly

Data Read-Only

ReadOnlyAccessed

Data Read-Only, accessed

ReadWrite

Data Read/Write

ReadWriteAccessed

Data Read/Write, accessed

ReadExpand

Data Read-Only, expand-down

ReadExpandAccessed

Data Read-Only, expand-down, accessed

ReadWriteExpand

Data Read/Write, expand-down

ReadWriteExpandAccessed

Data Read/Write, expand-down, accessed

Trait Implementations

impl Debug for DataSegmentType[src]

impl PartialEq<DataSegmentType> for DataSegmentType[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for DataSegmentType[src]

impl Copy for DataSegmentType[src]

impl Clone for DataSegmentType[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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