Trait InterpreterTraitObject

Source
pub trait InterpreterTraitObject {
    // Required method
    fn run(
        &self,
        ast: ASTNode,
        custom_commands: &HashMap<String, Box<dyn Command>>,
    );
}

Required Methods§

Source

fn run(&self, ast: ASTNode, custom_commands: &HashMap<String, Box<dyn Command>>)

Implementors§