Struct pdb::SymbolTable[][src]

pub struct SymbolTable<'s> { /* fields omitted */ }

PDB symbol tables contain names, locations, and metadata about functions, global/static data, constants, data types, and more.

The SymbolTable holds a SourceView referencing the symbol table inside the PDB file. All the data structures returned by a SymbolTable refer to that buffer.

Example

let file = std::fs::File::open("fixtures/self/foo.pdb")?;
let mut pdb = pdb::PDB::open(file)?;

let symbol_table = pdb.global_symbols()?;
let address_map = pdb.address_map()?;

let mut symbols = symbol_table.iter();
while let Some(symbol) = symbols.next()? {
    match symbol.parse() {
        Ok(pdb::SymbolData::Public(data)) if data.function => {
            // we found the location of a function!
            let rva = data.offset.to_rva(&address_map).unwrap_or_default();
            println!("{} is {}", rva, data.name);
        }
        _ => {}
    }
}

Implementations

impl<'s> SymbolTable<'s>[src]

pub fn iter(&self) -> SymbolIter<'_>[src]

Returns an iterator that can traverse the symbol table in sequential order.

pub fn iter_at(&self, index: SymbolIndex) -> SymbolIter<'_>[src]

Returns an iterator over symbols starting at the given index.

Trait Implementations

impl<'s> Debug for SymbolTable<'s>[src]

Auto Trait Implementations

impl<'s> !RefUnwindSafe for SymbolTable<'s>

impl<'s> !Send for SymbolTable<'s>

impl<'s> !Sync for SymbolTable<'s>

impl<'s> Unpin for SymbolTable<'s>

impl<'s> !UnwindSafe for SymbolTable<'s>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.