pub trait MutCallable: Send + Sync {
    fn call(&mut self, params: Vec<Primitive>) -> Vec<Primitive>;
}
Expand description

A mutable function which can be called from the front-end (remotely)

Required Methods§

Invoke the function

Implementors§