pub struct InstructionOpcode {
pub kind: OpcodeKind,
pub modifiers: Vec<ModifierKind>,
}Expand description
An opcode annotated with its parsed modifiers.
Fields§
§kind: OpcodeKind§modifiers: Vec<ModifierKind>Trait Implementations§
Source§impl Clone for InstructionOpcode
impl Clone for InstructionOpcode
Source§fn clone(&self) -> InstructionOpcode
fn clone(&self) -> InstructionOpcode
Returns a duplicate 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 InstructionOpcode
impl Debug for InstructionOpcode
Source§impl Display for InstructionOpcode
impl Display for InstructionOpcode
Source§impl PartialEq for InstructionOpcode
impl PartialEq for InstructionOpcode
impl Eq for InstructionOpcode
impl StructuralPartialEq for InstructionOpcode
Auto Trait Implementations§
impl Freeze for InstructionOpcode
impl RefUnwindSafe for InstructionOpcode
impl Send for InstructionOpcode
impl Sync for InstructionOpcode
impl Unpin for InstructionOpcode
impl UnwindSafe for InstructionOpcode
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