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
Statement(Statement)FillFields of Fill
expr: Box<Expression> |
DataFields of Data
d_type: DataType | |
value: Box<Expression> |
InputSectionFields of InputSection
file: SectionPattern | |
sections: Vec<SectionPattern> |
KeepInputSectionFields of KeepInputSection
file: SectionPattern | |
sections: Vec<SectionPattern> |
Trait Implementations
impl Debug for OutputSectionCommand[src]
impl PartialEq for OutputSectionCommand[src]
fn eq(&self, __arg_0: &OutputSectionCommand) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &OutputSectionCommand) -> bool
This method tests for !=.