Struct pdb_addr2line::Context[][src]

pub struct Context<'a: 't, 's, 't> { /* fields omitted */ }
Expand description

The main API of this crate. Resolves addresses to function information.

Implementations

Create a Context manually. Most consumers will want to use ContextPdbData::make_context instead.

However, if you interact with a PDB directly and parse some of its contents for other uses, you may want to call this method in order to avoid overhead from repeatedly parsing the same streams.

The number of functions found in the modules. If the PDB file lists multiple functions sharing the same rva range, the shared range is only counted as one function. In other words, this count is post-deduplication.

Iterate over all functions in the modules.

Find the function whose code contains the provided address. The return value only contains the function name and the rva range, but no file or line information.

Find information about the source code which generated the instruction at the provided address. This information includes the function name, file name and line number, of the containing procedure and of any functions that were inlined into the procedure by the compiler, at that address.

A lot of information is cached so that repeated calls are fast.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.