Registry / utility / pdb
library0.8.0rscratesunverified

A parser for Microsoft PDB (Program Database) debugging information.

# Cargo.toml [dependencies] pdb = "0.8.0"
INSTALL
IMPORT
SIG · PDB
P
pdb
utilityrustv0.8.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

PDBIterator
use pdb::PDBIterator;

Opens a PDB file and iterates over its global symbols.

use pdb::PDBIterator; fn main() -> Result<(), Box<dyn std::error::Error>> { let file = std::fs::File::open("example.pdb")?; let mut pdb = pdb::PDB::open(file)?; let symbol_table = pdb.global_symbols()?; let mut iter = symbol_table.iter(); while let Some(symbol) = iter.next()? { println!("{:?}", symbol); } Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.8.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
pdb — cargo add pdb · libregistry