Enum object::SymbolFlags
source · #[non_exhaustive]
pub enum SymbolFlags<Section> {
None,
Elf {
st_info: u8,
st_other: u8,
},
MachO {
n_desc: u16,
},
CoffSection {
selection: u8,
associative_section: Option<Section>,
},
}
Expand description
Symbol flags that are specific to each file format.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No symbol flags.
Elf
ELF symbol flags.
MachO
Mach-O symbol flags.
CoffSection
Fields
COFF flags for a section symbol.
Trait Implementations§
source§impl<Section: Clone> Clone for SymbolFlags<Section>
impl<Section: Clone> Clone for SymbolFlags<Section>
source§fn clone(&self) -> SymbolFlags<Section>
fn clone(&self) -> SymbolFlags<Section>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more