pub struct Export {
pub insn: InstructionId,
pub size: usize,
}Expand description
One value compiled code hands back for the interpreter to read.
Fields§
§insn: InstructionIdThe instruction whose result this is; the key it is filed under in the interpreter’s value table.
size: usizeIts declared width in bytes, which the slot’s low bytes hold.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Export
impl RefUnwindSafe for Export
impl Send for Export
impl Sync for Export
impl Unpin for Export
impl UnsafeUnpin for Export
impl UnwindSafe for Export
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