Enum object::SymbolKind [−][src]
#[non_exhaustive] pub enum SymbolKind { Unknown, Null, Text, Data, Section, File, Label, Tls, }
Expand description
The kind of a symbol.
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.
The symbol kind is unknown.
The symbol is a null placeholder.
The symbol is for executable code.
The symbol is for a data object.
The symbol is for a section.
The symbol is the name of a file. It precedes symbols within that file.
The symbol is for a code label.
The symbol is for a thread local storage entity.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SymbolKind
impl Send for SymbolKind
impl Sync for SymbolKind
impl Unpin for SymbolKind
impl UnwindSafe for SymbolKind
Blanket Implementations
Mutably borrows from an owned value. Read more