pub trait Function: Sync + Send { // Required method fn call(&self, args: &HashMap<String, Value>) -> Result<Value>; // Provided method fn is_safe(&self) -> bool { ... } }
The global function type definition
Whether the current function’s output should be treated as safe, defaults to false
false