Enum object::SymbolFlags [−][src]
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
None
No symbol flags.
Elf
ELF symbol flags.
MachO
Fields
n_desc: u16
n_desc
field in the Mach-O symbol.
Mach-O symbol flags.
CoffSection
Fields
selection: u8
Selection
field in the auxiliary symbol for the section.
associative_section: Option<Section>
Number
field in the auxiliary symbol for the section.
COFF flags for a section symbol.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<Section> RefUnwindSafe for SymbolFlags<Section> where
Section: RefUnwindSafe,
impl<Section> Send for SymbolFlags<Section> where
Section: Send,
impl<Section> Sync for SymbolFlags<Section> where
Section: Sync,
impl<Section> Unpin for SymbolFlags<Section> where
Section: Unpin,
impl<Section> UnwindSafe for SymbolFlags<Section> where
Section: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more