[][src]Struct gsm::machine::Machine

pub struct Machine<T> { /* fields omitted */ }

Methods

impl<T: Instruction<T> + Clone> Machine<T>[src]

pub fn new() -> Self[src]

pub fn from(s: &Script<T>) -> Self[src]

pub fn reboot(&mut self)[src]

pub fn load(&mut self, s: &Script<T>)[src]

pub fn get_stack_mut(&mut self) -> &mut Stack<T>[src]

pub fn push(&mut self, t: T)[src]

pub fn pop(&mut self) -> T[src]

pub fn get_ip(&self) -> usize[src]

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

pub fn push_frame(&mut self, ret: usize)[src]

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

pub fn get_instruction(&self, ip: usize) -> Option<T>[src]

pub fn execute(&mut self) -> Option<Stack<T>>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Machine<T> where
    T: 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.