Enum ucglib::parse::precedence::Element[][src]

pub enum Element {
    Expr(Expression),
    MathOp(BinaryExprType),
    CompareOp(CompareType),
}

Defines the intermediate stages of our bottom up parser for precedence parsing.

Variants

Trait Implementations

impl Debug for Element
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Element
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Element
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Element

impl Sync for Element