[][src]Enum symbolic::debuginfo::ObjectDebugSession

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

A generic debugging session.

Variants

Breakpad(BreakpadDebugSession<'d>)
SourceBundle(SourceBundleDebugSession<'d>)

Implementations

impl<'d> ObjectDebugSession<'d>[src]

pub fn functions(&self) -> ObjectFunctionIterator[src]

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.

pub fn files(&self) -> ObjectFileIterator[src]

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

pub fn source_by_path(
    &self,
    path: &str
) -> Result<Option<Cow<str>>, ObjectError>
[src]

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

The given path must be canonicalized.

Trait Implementations

impl<'_> DebugSession for ObjectDebugSession<'_>[src]

type Error = ObjectError

The error returned when reading debug information fails.

Auto Trait Implementations

impl<'d> !RefUnwindSafe for ObjectDebugSession<'d>

impl<'d> !Send for ObjectDebugSession<'d>

impl<'d> !Sync for ObjectDebugSession<'d>

impl<'d> Unpin for ObjectDebugSession<'d>

impl<'d> !UnwindSafe for ObjectDebugSession<'d>

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.