pub struct Instruction {
pub addr: u32,
pub opcode: u32,
pub operands: Vec<Operand>,
pub branch: Option<BranchTarget>,
pub storer: Operand,
pub storer2: Operand,
pub next: u32,
}
Fields§
§addr: u32
§opcode: u32
§operands: Vec<Operand>
§branch: Option<BranchTarget>
§storer: Operand
§storer2: Operand
§next: u32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Instruction
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
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