pub trait Function: Send + Sync {
    fn name(&self) -> &str;
    fn return_types(&self) -> DataType;
    fn execute(&self, input: &[&ArrayImpl]) -> Result<ArrayImpl, FunctionError>;
}

Required Methods§

Implementors§