Trait symbolic_debuginfo::SymbolTable [] [src]

pub trait SymbolTable {
    fn symbols(&self) -> Result<Option<Symbols>, ObjectError>;
}

Gives access to the symbol table of an Object file.

Required Methods

Returns the symbols of this Object.

If the symbol table has been stripped from the object, None is returned. In case a symbol table is present, but the trait has not been implemented for the object kind, an error is returned.

Implementors