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§
Trait Implementations§
source§impl Debug for OutputSectionCommand
impl Debug for OutputSectionCommand
source§impl PartialEq<OutputSectionCommand> for OutputSectionCommand
impl PartialEq<OutputSectionCommand> for OutputSectionCommand
source§fn eq(&self, other: &OutputSectionCommand) -> bool
fn eq(&self, other: &OutputSectionCommand) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.