[][src]Struct mtots::Code

pub struct Code { /* fields omitted */ }

Implementations

impl Code[src]

pub fn name(&self) -> &RcStr[src]

pub fn params(&self) -> &Vec<Variable>[src]

pub fn varspec(&self) -> &VarSpec[src]

pub fn marks(&self) -> &Vec<Mark>[src]

pub fn doc(&self) -> &Option<RcStr>[src]

pub fn docmap(&self) -> &HashMap<RcStr, RcStr, RandomState>[src]

pub fn apply_for_function(
    &self,
    globals: &mut Globals,
    bindings: Vec<Rc<RefCell<Value>>>,
    args: Vec<Value>
) -> Result<Value, Error>
[src]

For function calls runs this code object with the given bindings and arguments

pub fn apply_for_module(
    &self,
    globals: &mut Globals,
    map: &HashMap<RcStr, Value, RandomState>
) -> Result<Rc<Module>, Error>
[src]

For modules runs this code object with the given map of builtins

pub fn apply_for_repl(&self, globals: &mut Globals) -> Result<Value, Error>[src]

For repl runs this code object while using the given map essentially as a dynamic module scope

pub fn disasm(&self) -> Result<String, Error>[src]

Trait Implementations

impl Debug for Code[src]

Auto Trait Implementations

impl !RefUnwindSafe for Code

impl !Send for Code

impl !Sync for Code

impl Unpin for Code

impl !UnwindSafe for Code

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

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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