[][src]Enum pdb::SymbolData

pub enum SymbolData {
    PublicSymbol(PublicSymbol),
    DataSymbol(DataSymbol),
    ProcedureReference(ProcedureReferenceSymbol),
    DataReference(DataReferenceSymbol),
    AnnotationReference(AnnotationReferenceSymbol),
    Constant(ConstantSymbol),
    UserDefinedType(UserDefinedTypeSymbol),
    ThreadStorage(ThreadStorageSymbol),
}

SymbolData contains the information parsed from a symbol record.

Variants

Trait Implementations

impl Debug for SymbolData
[src]

Formats the value using the given formatter. Read more

impl Copy for SymbolData
[src]

impl Clone for SymbolData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for SymbolData
[src]

impl PartialEq for SymbolData
[src]

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 Send for SymbolData

impl Sync for SymbolData