Enum burst::x86::SegmentRegister
[−]
[src]
#[repr(i32)]pub enum SegmentRegister { ES, CS, SS, DS, FS, GS, DEFAULT, }
A segment register
Variants
ESExtra data segment register.
CSCode segment register.
SSStack segment register.
DSData segment register.
FSExtra data segment register. Used as a thread register on some platforms.
GSExtra data segment register. Used as a thread register on some platforms.
DEFAULTDefault segment register.
Trait Implementations
impl Clone for SegmentRegister[src]
fn clone(&self) -> SegmentRegister[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for SegmentRegister[src]
impl Debug for SegmentRegister[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for SegmentRegister[src]
fn eq(&self, __arg_0: &SegmentRegister) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialOrd for SegmentRegister[src]
fn partial_cmp(&self, __arg_0: &SegmentRegister) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more