Enum wright::parser::ast::Expr [] [src]

pub enum Expr {
    Unary(UnaryExpr),
    Binary(BinaryExpr),
    Literal(Literal),
    Identifier(Identifier),
    FunctionCall(Call),
    SingleCondition(Condition),
    Conditional(Conditional),
}

Expression enum.

Variants

Trait Implementations

impl Clone for Expr
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Expr
[src]

[src]

Formats the value using the given formatter.