pub trait VTableExt: VTable {
// Provided methods
fn new_expr(
&'static self,
instance: Self::Instance,
children: impl Into<Arc<[Expression]>>,
) -> Expression { ... }
fn try_new_expr(
&'static self,
instance: Self::Instance,
children: impl Into<Arc<[Expression]>>,
) -> VortexResult<Expression> { ... }
}Expand description
Factory functions for static vtables.
Provided Methods§
fn new_expr( &'static self, instance: Self::Instance, children: impl Into<Arc<[Expression]>>, ) -> Expression
fn try_new_expr( &'static self, instance: Self::Instance, 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.