pub trait SymbolTable {
    fn has_symbols(&self) -> bool;
    fn symbols(&self) -> Result<Option<Symbols<'_>>, ObjectError>;
}
Expand description

Gives access to the symbol table of an Object file.

Required Methods

Checks whether this object contains DWARF infos.

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