pub enum OpcodeMap {
None,
_0F,
_0F38,
_0F3A,
}
Expand description
Allows using the same opcode byte in different “opcode maps” to allow for more instruction encodings. See appendix A in the Intel Software Developer’s Manual, volume 2A, for more details.
Variants
None
_0F
_0F38
_0F3A
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for OpcodeMap
impl Send for OpcodeMap
impl Sync for OpcodeMap
impl Unpin for OpcodeMap
impl UnwindSafe for OpcodeMap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more