Skip to main content

StandaloneCallFn

Trait StandaloneCallFn 

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

Source

fn execute( &self, args: &[Expression], ) -> Result<Vec<Vec<Value>>, ProcessorError>

Source

fn aliases(&self) -> Vec<&'static str>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§