pub struct Inst<T>{
pub id: u64,
pub inst: T,
pub op: Op,
}Expand description
Post-parsing representation of an instruction
Fields§
§id: u64§inst: T§op: OpImplementations§
Auto Trait Implementations§
impl<T> Freeze for Inst<T>where
T: Freeze,
impl<T> RefUnwindSafe for Inst<T>where
T: RefUnwindSafe,
impl<T> Send for Inst<T>where
T: Send,
impl<T> Sync for Inst<T>where
T: Sync,
impl<T> Unpin for Inst<T>where
T: Unpin,
impl<T> UnsafeUnpin for Inst<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Inst<T>where
T: UnwindSafe,
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