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