pub trait StandaloneCallFn: Send + Sync {
// Required methods
fn execute(
&self,
args: &[Expression],
) -> Result<Vec<Vec<Value>>, ProcessorError>;
fn aliases(&self) -> Vec<&'static str>;
}Required Methods§
fn execute( &self, args: &[Expression], ) -> Result<Vec<Vec<Value>>, ProcessorError>
fn aliases(&self) -> Vec<&'static str>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".