[][src]Struct moss::Interpreter

pub struct Interpreter {
    pub rte: Rc<RTE>,
    pub state: RefCell<State>,
}

Fields

rte: Rc<RTE>state: RefCell<State>

Methods

impl Interpreter[src]

pub fn lock(&self) -> InterpreterLock[src]

pub fn tie<T>(&self, f: impl FnOnce(&mut Env) -> T) -> T[src]

pub fn eval(&self, s: &str) -> Object[src]

pub fn eval_cast<T>(&self, s: &str) -> T where
    T: TypeName + Downcast<Output = T>, 
[src]

pub fn new_config(stack_size: usize) -> Self[src]

pub fn new() -> Rc<Self>[src]

pub fn repr(&self, x: &Object) -> String[src]

pub fn string(&self, x: &Object) -> String[src]

pub fn set_config(&self, config: CompilerExtra)[src]

pub fn set_capabilities(&self, root_mode: bool)[src]

Trait Implementations

impl Drop for Interpreter[src]

Auto Trait Implementations

impl !Send for Interpreter

impl !Sync for Interpreter

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]