Enum symbolic_debuginfo::ObjectDebugSession[][src]

pub enum ObjectDebugSession<'d> {
    Breakpad(BreakpadDebugSession<'d>),
    Dwarf(DwarfDebugSession<'d>),
    Pdb(PdbDebugSession<'d>),
    Pe(PeDebugSession<'d>),
    SourceBundle(SourceBundleDebugSession<'d>),
}
Expand description

A generic debugging session.

Variants

Breakpad(BreakpadDebugSession<'d>)

Tuple Fields of Breakpad

0: BreakpadDebugSession<'d>

Tuple Fields of Dwarf

0: DwarfDebugSession<'d>

Tuple Fields of Pdb

0: PdbDebugSession<'d>

Tuple Fields of Pe

0: PeDebugSession<'d>
SourceBundle(SourceBundleDebugSession<'d>)

Tuple Fields of SourceBundle

0: SourceBundleDebugSession<'d>

Implementations

Returns an iterator over all functions in this debug file.

Functions are iterated in the order they are declared in their compilation units. The functions yielded by this iterator include all inlinees and line records resolved.

Note that the iterator holds a mutable borrow on the debug session, which allows it to use caches and optimize resources while resolving function and line information.

Returns an iterator over all source files referenced by this debug file.

Looks up a file’s source contents by its full canonicalized path.

The given path must be canonicalized.

Trait Implementations

The error returned when reading debug information fails.

An iterator over all functions in this debug file.

An iterator over all source files referenced by this debug file.

Returns an iterator over all functions in this debug file. Read more

Returns an iterator over all source files referenced by this debug file.

Looks up a file’s source contents by its full canonicalized path. Read more

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

Given the context attached to a nom error, and given the original input to the nom parser, extract more the useful context information. Read more

Performs the conversion.

Performs the conversion.

Given the original input, as well as the context reported by nom, recreate a context in the original string where the error occurred. Read more

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.