pub enum Group2Prefix {
CSorBNT,
SS,
DSorBT,
ES,
FS,
GS,
}
Expand description
Contains the segment override prefixes or a (deprecated) branch hint when
used on a Jcc
instruction. Note that using the segment override prefixes
on a branch instruction is reserved. See section 2.1.1, “Instruction
Prefixes,” in the reference manual.
Variants§
CSorBNT
The CS segment override prefix (0x2e
); also the “branch not taken”
hint.
SS
The SS segment override prefix (0x36
).
DSorBT
The DS segment override prefix (0x3e
); also the “branch taken” hint.
ES
The ES segment override prefix (0x26
).
FS
The FS segment override prefix (0x64
).
GS
The GS segment override prefix (0x65
).
Trait Implementations§
Source§impl Display for Group2Prefix
impl Display for Group2Prefix
Auto Trait Implementations§
impl Freeze for Group2Prefix
impl RefUnwindSafe for Group2Prefix
impl Send for Group2Prefix
impl Sync for Group2Prefix
impl Unpin for Group2Prefix
impl UnwindSafe for Group2Prefix
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more