Enum ldscript_parser::Statement [] [src]

pub enum Statement {
    Assign {
        name: String,
        operator: AssignOperator,
        expression: Box<Expression>,
    },
    Hidden {
        name: String,
        expression: Box<Expression>,
    },
    Provide {
        name: String,
        expression: Box<Expression>,
    },
    ProvideHidden {
        name: String,
        expression: Box<Expression>,
    },
    Assert {
        expr: Box<Expression>,
        text: String,
    },
}

Variants

Fields of Assign

Fields of Hidden

Fields of Provide

Fields of ProvideHidden

Fields of Assert

Trait Implementations

impl Debug for Statement
[src]

Formats the value using the given formatter.

impl PartialEq for Statement
[src]

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

This method tests for !=.