Enum object::SymbolFlags [−][src]
#[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.
No symbol flags.
ELF symbol flags.
Fields of Elf
Mach-O symbol flags.
Fields of MachO
n_desc: u16n_desc field in the Mach-O symbol.
COFF flags for a section symbol.
Fields of CoffSection
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
Compare self to key and return true if they are equal.