Skip to main content

Function

Trait Function 

Source
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§

Source

fn call(&self, args: &HashMap<String, Value>) -> Result<Value>

The global function type definition

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<F> Function for F
where F: Fn(&HashMap<String, Value>) -> Result<Value> + Sync + Send,