pub trait Expr: Into<ExprImpl> {
// Required methods
fn return_type(&self) -> DataType;
fn to_expr_proto(&self) -> ExprNode;
}
Expand description
the trait of bound expressions
Required Methods§
Sourcefn return_type(&self) -> DataType
fn return_type(&self) -> DataType
Get the return type of the expr
Sourcefn to_expr_proto(&self) -> ExprNode
fn to_expr_proto(&self) -> ExprNode
Serialize the 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.