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
Statement(Statement)Command(Command)OutputSectionFields of 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>> |
Trait Implementations
impl Debug for SectionCommand[src]
impl PartialEq for SectionCommand[src]
fn eq(&self, __arg_0: &SectionCommand) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SectionCommand) -> bool
This method tests for !=.