Callable

Trait Callable 

Source
pub trait Callable {
    // Required method
    fn call(&self, ctx: &mut Context) -> Result<(), Trap>;
}
Expand description

Given a Context can call itself and modify the Context

Required Methods§

Source

fn call(&self, ctx: &mut Context) -> Result<(), Trap>

Implementors§