pub enum Expression {
OrExpression(OrExpression),
InExpression(InExpression),
VariableDeclaration(VariableDeclaration),
Literal(Literal),
Unknown,
}Expand description
AST expressions
Variants§
OrExpression(OrExpression)
Or expression
InExpression(InExpression)
In expression
VariableDeclaration(VariableDeclaration)
Variable declaration
Literal(Literal)
Literal expression
Unknown
Unknown expression
Trait Implementations§
Source§impl Debug for Expression
impl Debug for Expression
Source§impl PartialEq for Expression
impl PartialEq for Expression
impl StructuralPartialEq for Expression
Auto Trait Implementations§
impl Freeze for Expression
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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