Enum ldscript_parser::SectionCommand [] [src]

pub enum SectionCommand {
    Statement(Statement),
    Command(Command),
    OutputSection {
        name: String,
        vma_address: Option<Box<Expression>>,
        s_type: Option<OutputSectionType>,
        lma_address: Option<Box<Expression>>,
        section_align: Option<Box<Expression>>,
        align_with_input: bool,
        subsection_align: Option<Box<Expression>>,
        constraint: Option<OutputSectionConstraint>,
        content: Vec<OutputSectionCommand>,
        region: Option<String>,
        lma_region: Option<String>,
        fillexp: Option<Box<Expression>>,
    },
}

Variants

Fields of OutputSection

Trait Implementations

impl Debug for SectionCommand
[src]

Formats the value using the given formatter.

impl PartialEq for SectionCommand
[src]

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

This method tests for !=.