Enum object::SymbolKind [−][src]
pub enum SymbolKind {
Unknown,
Null,
Text,
Data,
Section,
File,
Label,
Tls,
}
Expand description
The kind of a symbol.
Variants
Unknown
The symbol kind is unknown.
Null
The symbol is a null placeholder.
Text
The symbol is for executable code.
Data
The symbol is for a data object.
Section
The symbol is for a section.
File
The symbol is the name of a file. It precedes symbols within that file.
Label
The symbol is for a code label.
Tls
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