Enum datafusion_jit::ast::Expr
source · pub enum Expr {
Literal(Literal),
Identifier(String, JITType),
Binary(BinaryExpr),
Call(String, Vec<Expr>, JITType),
Load(Box<Expr>, JITType),
}
Expand description
Expression
Variants
Literal(Literal)
literal
Identifier(String, JITType)
variable
Binary(BinaryExpr)
binary expression
Call(String, Vec<Expr>, JITType)
call function expression
Load(Box<Expr>, JITType)
Load a value from pointer
Implementations
Trait Implementations
sourceimpl TryFrom<(Expr, Arc<DFSchema>)> for Expr
impl TryFrom<(Expr, Arc<DFSchema>)> for Expr
type Error = DataFusionError
type Error = DataFusionError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Expr
Auto Trait Implementations
impl RefUnwindSafe for Expr
impl Send for Expr
impl Sync for Expr
impl Unpin for Expr
impl UnwindSafe for Expr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more