[][src]Trait minsc::runtime::Execute

pub trait Execute {
    pub fn exec(&self, scope: &mut Scope<'_>) -> Result<()>;
}

Execute a statement. Statements have side-effects and don't have a return value.

Required methods

pub fn exec(&self, scope: &mut Scope<'_>) -> Result<()>[src]

Loading content...

Implementors

impl Execute for Stmt[src]

impl Execute for Assign[src]

impl Execute for FnDef[src]

Loading content...