[][src]Struct cclang::Machine

pub struct Machine<I> where
    I: Clone
{ /* fields omitted */ }

Implementations

impl<I> Machine<I> where
    I: Instruction<I> + Clone
[src]

pub fn push(&mut self, i: I)[src]

pub fn pop(&mut self) -> Option<I>[src]

pub fn pushr(&mut self, i: usize)[src]

pub fn popr(&mut self) -> Option<usize>[src]

pub fn geti(&self, i: usize) -> Option<I>[src]

pub fn version_check(&self, v: &Version) -> bool[src]

pub fn reset(&mut self)[src]

pub fn execute(&mut self, io: &dyn AppIO<I>) -> Option<Stack<I>>[src]

Trait Implementations

impl<I> From<Script<I>> for Machine<I> where
    I: Clone
[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for Machine<I> where
    I: RefUnwindSafe

impl<I> Send for Machine<I> where
    I: Send

impl<I> Sync for Machine<I> where
    I: Sync

impl<I> Unpin for Machine<I> where
    I: Unpin

impl<I> UnwindSafe for Machine<I> where
    I: UnwindSafe

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