pub struct Execution {
pub outcome: ExecutionOutcome,
pub value: Value,
pub link: Value,
pub entry_registers: Vec<Value>,
}Expand description
A terminated execution and the entry activation’s observable state.
Fields§
§outcome: ExecutionOutcome§value: ValueThe explicit entry return value, or undefined for Halt.
link: ValueBackward-compatible name for the final returned value.
entry_registers: Vec<Value>Trait Implementations§
impl Eq for Execution
impl StructuralPartialEq for Execution
Auto Trait Implementations§
impl Freeze for Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnsafeUnpin for Execution
impl UnwindSafe for Execution
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