Enum ldscript_parser::SectionPattern
source · pub enum SectionPattern {
Simple(String),
SortByName(String),
SortByAlignment(String),
SortByInitPriority(String),
SortNone(String),
ExcludeFile {
files: Vec<String>,
pattern: Box<SectionPattern>,
},
}
Variants§
Simple(String)
SortByName(String)
SortByAlignment(String)
SortByInitPriority(String)
SortNone(String)
ExcludeFile
Trait Implementations§
source§impl Debug for SectionPattern
impl Debug for SectionPattern
source§impl PartialEq<SectionPattern> for SectionPattern
impl PartialEq<SectionPattern> for SectionPattern
source§fn eq(&self, other: &SectionPattern) -> bool
fn eq(&self, other: &SectionPattern) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.