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§
impl StructuralPartialEq for Expr
Auto Trait Implementations§
impl Freeze for Expr
impl RefUnwindSafe for Expr
impl Send for Expr
impl Sync for Expr
impl Unpin for Expr
impl UnwindSafe for Expr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more