Enum ldscript_parser::Command [] [src]

pub enum Command {
    Call {
        name: String,
        arguments: Vec<Expression>,
    },
    Include {
        file: String,
    },
}

Variants

Fields of Call

Fields of Include

Trait Implementations

impl Debug for Command
[src]

Formats the value using the given formatter.

impl PartialEq for Command
[src]

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

This method tests for !=.