pub enum Prefix {
Lock,
Rep,
Repne,
SegFs,
SegGs,
}Expand description
x86 instruction prefix.
Variants§
Lock
LOCK prefix — atomic read-modify-write.
Rep
REP / REPE / REPZ prefix — repeat while equal / count.
Repne
REPNE / REPNZ prefix — repeat while not equal.
SegFs
FS: segment override.
SegGs
GS: segment override.
Trait Implementations§
impl Copy for Prefix
impl Eq for Prefix
impl StructuralPartialEq for Prefix
Auto Trait Implementations§
impl Freeze for Prefix
impl RefUnwindSafe for Prefix
impl Send for Prefix
impl Sync for Prefix
impl Unpin for Prefix
impl UnwindSafe for Prefix
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