Struct symbolic::debuginfo::breakpad::BreakpadDebugSession[][src]

pub struct BreakpadDebugSession<'data> { /* fields omitted */ }

Debug session for Breakpad objects.

Implementations

impl<'data> BreakpadDebugSession<'data>[src]

pub fn functions(&self) -> BreakpadFunctionIterator<'_>

Notable traits for BreakpadFunctionIterator<'s>

impl<'s> Iterator for BreakpadFunctionIterator<'s> type Item = Result<Function<'s>, BreakpadError>;
[src]

Returns an iterator over all functions in this debug file.

pub fn files(&self) -> BreakpadFileIterator<'_>

Notable traits for BreakpadFileIterator<'s>

impl<'s> Iterator for BreakpadFileIterator<'s> type Item = Result<FileEntry<'s>, BreakpadError>;
[src]

Returns an iterator over all source files in this debug file.

pub fn source_by_path(
    &self,
    _path: &str
) -> Result<Option<Cow<'_, str>>, BreakpadError>
[src]

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

The given path must be canonicalized.

Trait Implementations

impl<'data, 'session> DebugSession<'session> for BreakpadDebugSession<'data>[src]

type Error = BreakpadError

The error returned when reading debug information fails.

type FunctionIterator = BreakpadFunctionIterator<'session>

An iterator over all functions in this debug file.

type FileIterator = BreakpadFileIterator<'session>

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

Auto Trait Implementations

impl<'data> RefUnwindSafe for BreakpadDebugSession<'data>[src]

impl<'data> Send for BreakpadDebugSession<'data>[src]

impl<'data> Sync for BreakpadDebugSession<'data>[src]

impl<'data> Unpin for BreakpadDebugSession<'data>[src]

impl<'data> UnwindSafe for BreakpadDebugSession<'data>[src]

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.