pub trait BreakpadData {
    fn has_breakpad_data(&self) -> bool;
    fn breakpad_records(&self) -> BreakpadRecords<'_>;
}
Expand description

Gives access to Breakpad debugging information.

Required Methods

Determines whether this Object contains Breakpad debugging information.

Returns an iterator over all records of the Breakpad symbol file.

Implementors