Enum object::SymbolKind [] [src]

pub enum SymbolKind {
    Unknown,
    Text,
    Data,
    Section,
    File,
    Common,
    Tls,
}

The kind of a symbol.

Variants

The symbol kind is unknown.

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 an uninitialized common block.

The symbol is for a thread local storage entity.

Trait Implementations

impl Debug for SymbolKind
[src]

[src]

Formats the value using the given formatter.

impl Clone for SymbolKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SymbolKind
[src]

impl PartialEq for SymbolKind
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for SymbolKind
[src]