[][src]Struct runestick::VmExecution

pub struct VmExecution { /* fields omitted */ }

The execution environment for a virtual machine.

Implementations

impl VmExecution[src]

pub fn vm(&self) -> Result<&Vm, VmError>[src]

Get the current virtual machine.

pub fn vm_mut(&mut self) -> Result<&mut Vm, VmError>[src]

Get the current virtual machine mutably.

pub async fn async_complete<'_>(&'_ mut self) -> Result<Value, VmError>[src]

Run the given task to completion.

pub fn complete(&mut self) -> Result<Value, VmError>[src]

Run the given task to completion without support for async functions.

If any async instructions are encountered, this will error.

pub async fn async_resume<'_>(&'_ mut self) -> Result<GeneratorState, VmError>[src]

Continue executing the current execution.

pub fn resume(&mut self) -> Result<GeneratorState, VmError>[src]

Continue executing the current execution.

pub async fn step<'_>(&'_ mut self) -> Result<Option<Value>, VmError>[src]

Run the execution for one step.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,