pub trait Function: Sync + Send {
// Required method
fn call(&self, args: &HashMap<String, Value>) -> Result<Value>;
}Expand description
The global function type definition
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".