[][src]Struct wire4::Wire4VM

pub struct Wire4VM { /* fields omitted */ }

Methods

impl Wire4VM[src]

pub fn new() -> Wire4VM[src]

pub fn reset(&mut self)[src]

pub fn load(&mut self, prog: &str) -> Result<(), VMError>[src]

pub fn set_var(&mut self, key: u32, val: Value) -> Result<(), VMError>[src]

pub fn get_var(&self, key: u32) -> Option<&Value>[src]

pub fn get_stack(&self) -> &Stack[src]

pub fn get_string(&self, key: u32) -> Option<&String>[src]

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

pub fn push(&mut self, value: Value) -> Result<(), VMError>[src]

pub fn spin(&mut self) -> Result<VMRequest, VMError>[src]

pub fn tick(&mut self) -> Result<Option<VMRequest>, VMError>[src]

Trait Implementations

impl Debug for Wire4VM[src]

impl Default for Wire4VM[src]

Auto Trait Implementations

impl Send for Wire4VM

impl Sync for Wire4VM

impl Unpin for Wire4VM

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> Same<T> for T

type Output = T

Should always be Self

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.