logo
pub trait Executable {
    fn run(&self, context: &mut Context) -> JsResult<JsValue>;
}

Required Methods

Runs this executable in the given context.

Implementors