[][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 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

impl PartialEq<DataSegmentType> for DataSegmentType[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for DataSegmentType[src]

impl Debug for DataSegmentType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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