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

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

Required Methods

Invoke the function

Implementors