CustomFunction

Trait CustomFunction 

Source
pub trait CustomFunction:
    Debug
    + Send
    + Sync {
    // Required method
    fn call(&self, args: &[Value]) -> Result<Value, CustomFuncError>;
}

Required Methods§

Source

fn call(&self, args: &[Value]) -> Result<Value, CustomFuncError>

Implementors§