Trait minidump::Module[][src]

pub trait Module {
    fn base_address(&self) -> u64;
fn size(&self) -> u64;
fn code_file(&self) -> Cow<'_, str>;
fn code_identifier(&self) -> Cow<'_, str>;
fn debug_file(&self) -> Option<Cow<'_, str>>;
fn debug_identifier(&self) -> Option<Cow<'_, str>>;
fn version(&self) -> Option<Cow<'_, str>>; }
Expand description

An executable or shared library loaded in a process.

Required methods

fn base_address(&self) -> u64[src]

The base address of this code module as it was loaded by the process.

fn size(&self) -> u64[src]

The size of the code module.

fn code_file(&self) -> Cow<'_, str>[src]

The path or file name that the code module was loaded from.

fn code_identifier(&self) -> Cow<'_, str>[src]

An identifying string used to discriminate between multiple versions and builds of the same code module. This may contain a uuid, timestamp, version number, or any combination of this or other information, in an implementation-defined format.

fn debug_file(&self) -> Option<Cow<'_, str>>[src]

The filename containing debugging information associated with the code module. If debugging information is stored in a file separate from the code module itself (as is the case when .pdb or .dSYM files are used), this will be different from code_file. If debugging information is stored in the code module itself (possibly prior to stripping), this will be the same as code_file.

fn debug_identifier(&self) -> Option<Cow<'_, str>>[src]

An identifying string similar to code_identifier, but identifies a specific version and build of the associated debug file. This may be the same as code_identifier when the debug_file and code_file are identical or when the same identifier is used to identify distinct debug and code files.

fn version(&self) -> Option<Cow<'_, str>>[src]

A human-readable representation of the code module’s version.

Implementations on Foreign Types

impl<'a> Module for (&'a str, &'a str)[src]

Implement Module for 2-tuples of &str for convenience. breakpad-symbolsSymbolizer::get_symbol_at_address uses this.

pub fn base_address(&self) -> u64[src]

pub fn size(&self) -> u64[src]

pub fn code_file(&self) -> Cow<'_, str>[src]

pub fn code_identifier(&self) -> Cow<'_, str>[src]

pub fn debug_file(&self) -> Option<Cow<'_, str>>[src]

pub fn debug_identifier(&self) -> Option<Cow<'_, str>>[src]

pub fn version(&self) -> Option<Cow<'_, str>>[src]

Implementors

impl Module for MinidumpModule[src]

fn base_address(&self) -> u64[src]

fn size(&self) -> u64[src]

fn code_file(&self) -> Cow<'_, str>[src]

fn code_identifier(&self) -> Cow<'_, str>[src]

fn debug_file(&self) -> Option<Cow<'_, str>>[src]

fn debug_identifier(&self) -> Option<Cow<'_, str>>[src]

fn version(&self) -> Option<Cow<'_, str>>[src]

impl Module for MinidumpUnloadedModule[src]

fn base_address(&self) -> u64[src]

fn size(&self) -> u64[src]

fn code_file(&self) -> Cow<'_, str>[src]

fn code_identifier(&self) -> Cow<'_, str>[src]

fn debug_file(&self) -> Option<Cow<'_, str>>[src]

fn debug_identifier(&self) -> Option<Cow<'_, str>>[src]

fn version(&self) -> Option<Cow<'_, str>>[src]