Struct vvm::interpreter::Interpreter[][src]

pub struct Interpreter<Cost: CostType> { /* fields omitted */ }

Intepreter VVM implementation

Implementations

impl<Cost: CostType> Interpreter<Cost>[src]

pub fn new(
    params: ActionParams,
    cache: Arc<SharedCache>,
    schedule: &Schedule,
    depth: usize
) -> Interpreter<Cost>
[src]

Create a new Interpreter instance with shared cache.

pub fn step(&mut self, ext: &mut dyn Ext) -> InterpreterResult[src]

Execute a single step on the VM.

Trait Implementations

impl<Cost: 'static + CostType> Exec for Interpreter<Cost>[src]

impl<Cost: 'static + CostType> ResumeCall for Interpreter<Cost>[src]

impl<Cost: 'static + CostType> ResumeCreate for Interpreter<Cost>[src]

Auto Trait Implementations

impl<Cost> !RefUnwindSafe for Interpreter<Cost>

impl<Cost> Send for Interpreter<Cost>

impl<Cost> Sync for Interpreter<Cost> where
    Cost: Sync

impl<Cost> Unpin for Interpreter<Cost> where
    Cost: Unpin

impl<Cost> !UnwindSafe for Interpreter<Cost>

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>,