pub struct PcodeInsn {
pub address: u64,
pub ops: Vec<PcodeOp>,
}Expand description
All P-code ops emitted for one machine instruction.
Fields§
§address: u64Machine address of the instruction.
ops: Vec<PcodeOp>P-code ops, in emission order.
Trait Implementations§
impl Eq for PcodeInsn
impl StructuralPartialEq for PcodeInsn
Auto Trait Implementations§
impl Freeze for PcodeInsn
impl RefUnwindSafe for PcodeInsn
impl Send for PcodeInsn
impl Sync for PcodeInsn
impl Unpin for PcodeInsn
impl UnsafeUnpin for PcodeInsn
impl UnwindSafe for PcodeInsn
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