pub trait ExtensionExpr:
Debug
+ Send
+ Sync {
// Required methods
fn as_any(&self) -> &dyn Any;
fn name(&self) -> &str;
fn value_type(&self) -> ValueType;
fn children(&self) -> &[Expr];
}
Expand description
The interface for extending the AST with custom expression node.