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§
Trait Implementations§
source§impl PartialEq<OpcodeMap> for OpcodeMap
impl PartialEq<OpcodeMap> for OpcodeMap
impl StructuralPartialEq for OpcodeMap
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§
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