Exec

Trait Exec 

Source
pub trait Exec: Send + Sync {
    // Required method
    fn execute(
        &self,
        fs: Arc<dyn FunctionSet>,
        input: &Value,
        output: &mut Value,
    ) -> Result<()>;
}

Required Methods§

Source

fn execute( &self, fs: Arc<dyn FunctionSet>, input: &Value, output: &mut Value, ) -> Result<()>

Implementors§