Struct badder_lang::Interpreter[][src]

pub struct Interpreter<O: Overseer> { /* fields omitted */ }

Implementations

impl<O: Overseer> Interpreter<O>[src]

pub fn new(max_stack_len: usize, overseer: O) -> Interpreter<O>[src]

pub fn evaluate(&mut self, ast: &Ast) -> Result<Int, BadderError>[src]

Trait Implementations

impl<O: Debug + Overseer> Debug for Interpreter<O>[src]

impl Default for Interpreter<NoOverseer>[src]

Auto Trait Implementations

impl<O> RefUnwindSafe for Interpreter<O> where
    O: RefUnwindSafe
[src]

impl<O> Send for Interpreter<O> where
    O: Send
[src]

impl<O> Sync for Interpreter<O> where
    O: Sync
[src]

impl<O> Unpin for Interpreter<O> where
    O: Unpin
[src]

impl<O> UnwindSafe for Interpreter<O> where
    O: UnwindSafe
[src]

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.