#[repr(u8)]pub enum OpcodePrefix {
Bitwise,
Extended,
Indexed(RegisterPairType),
IndexedBitwise(RegisterPairType),
}
Expand description
Represents a set of one or two bytes modifying an instruction’s opcode.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OpcodePrefix
impl Clone for OpcodePrefix
Source§fn clone(&self) -> OpcodePrefix
fn clone(&self) -> OpcodePrefix
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OpcodePrefix
impl Debug for OpcodePrefix
Source§impl Display for OpcodePrefix
impl Display for OpcodePrefix
Source§impl PartialEq for OpcodePrefix
impl PartialEq for OpcodePrefix
impl Copy for OpcodePrefix
impl StructuralPartialEq for OpcodePrefix
Auto Trait Implementations§
impl Freeze for OpcodePrefix
impl RefUnwindSafe for OpcodePrefix
impl Send for OpcodePrefix
impl Sync for OpcodePrefix
impl Unpin for OpcodePrefix
impl UnwindSafe for OpcodePrefix
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