pub struct InstructionPattern {
pub bytecode: Bytecode,
pub operands: &'static [ExpectedOperandType],
pub mnemonic: &'static str,
}Fields§
§bytecode: Bytecode§operands: &'static [ExpectedOperandType]§mnemonic: &'static strTrait Implementations§
Source§impl Clone for InstructionPattern
impl Clone for InstructionPattern
Source§fn clone(&self) -> InstructionPattern
fn clone(&self) -> InstructionPattern
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InstructionPattern
impl RefUnwindSafe for InstructionPattern
impl Send for InstructionPattern
impl Sync for InstructionPattern
impl Unpin for InstructionPattern
impl UnsafeUnpin for InstructionPattern
impl UnwindSafe for InstructionPattern
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