pub enum VmStepOutcome {
Running,
Halted,
Aborted,
}Expand description
One result returned after executing exactly one instruction.
Variants§
Running
One instruction executed and the script can continue.
Halted
The script returned from the outermost frame.
Aborted
A host action handler requested abort and the VM stopped cleanly.
Trait Implementations§
Source§impl Clone for VmStepOutcome
impl Clone for VmStepOutcome
Source§fn clone(&self) -> VmStepOutcome
fn clone(&self) -> VmStepOutcome
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VmStepOutcome
impl Debug for VmStepOutcome
Source§impl PartialEq for VmStepOutcome
impl PartialEq for VmStepOutcome
impl Copy for VmStepOutcome
impl Eq for VmStepOutcome
impl StructuralPartialEq for VmStepOutcome
Auto Trait Implementations§
impl Freeze for VmStepOutcome
impl RefUnwindSafe for VmStepOutcome
impl Send for VmStepOutcome
impl Sync for VmStepOutcome
impl Unpin for VmStepOutcome
impl UnsafeUnpin for VmStepOutcome
impl UnwindSafe for VmStepOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.