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
Expr(Expression)MathOp(BinaryExprType)CompareOp(CompareType)
Trait Implementations
impl Debug for Element[src]
impl Debug for Elementfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Element[src]
impl PartialEq for Elementfn eq(&self, other: &Element) -> bool[src]
fn eq(&self, other: &Element) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Element) -> bool[src]
fn ne(&self, other: &Element) -> boolThis method tests for !=.
impl Clone for Element[src]
impl Clone for Element