Enum ldscript_parser::OutputSectionCommand [] [src]

pub enum OutputSectionCommand {
    Statement(Statement),
    Fill {
        expr: Box<Expression>,
    },
    Data {
        d_type: DataType,
        value: Box<Expression>,
    },
    InputSection {
        file: SectionPattern,
        sections: Vec<SectionPattern>,
    },
    KeepInputSection {
        file: SectionPattern,
        sections: Vec<SectionPattern>,
    },
}

Variants

Fields of Fill

Fields of Data

Fields of InputSection

Fields of KeepInputSection

Trait Implementations

impl Debug for OutputSectionCommand
[src]

Formats the value using the given formatter.

impl PartialEq for OutputSectionCommand
[src]

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

This method tests for !=.