Struct ucglib::ast::tree::BinaryOpDef [] [src]

pub struct BinaryOpDef {
    pub kind: BinaryExprType,
    pub left: Box<Expression>,
    pub right: Box<Expression>,
    pub pos: Position,
}

Represents an expression with a left and a right side.

Fields

Trait Implementations

impl Debug for BinaryOpDef
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for BinaryOpDef
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for BinaryOpDef
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for BinaryOpDef

impl Sync for BinaryOpDef