pub trait Extension:
FnMut(Vec<Value>) -> Result<Value>
+ Send
+ Sync {
// Required method
fn clone_box<'a>(&self) -> Box<dyn Extension + 'a>
where Self: 'a;
}
Expand description
A user defined builtin function implementation.
It is not necessary to implement this trait directly.