pub trait ScalarFnExprExt: VTable {
// Provided method
fn try_new_expr(
&'static self,
options: Self::Options,
children: impl Into<Arc<[Expression]>>,
) -> VortexResult<Expression> { ... }
}Expand description
Expression factory functions for ScalarFn vtables.
Provided Methods§
fn try_new_expr( &'static self, options: Self::Options, children: impl Into<Arc<[Expression]>>, ) -> VortexResult<Expression>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.