pub struct ExecInst {
pub id: u64,
pub func: ExecFunc,
pub op: Op,
}Expand description
Runtime representation of an instruction
Fields§
§id: u64Identifies the instruction with an integer, fixes rust-lang/rfcs#3535
func: ExecFunc§op: OpImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecInst
impl RefUnwindSafe for ExecInst
impl Send for ExecInst
impl Sync for ExecInst
impl Unpin for ExecInst
impl UnsafeUnpin for ExecInst
impl UnwindSafe for ExecInst
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