pub trait MutCallable: Send + Sync { fn call(&mut self, params: Vec<Primitive>) -> Vec<Primitive>; }
A mutable function which can be called from the front-end (remotely)
Invoke the function