Trait breakpad_symbols::FrameSymbolizer [] [src]

pub trait FrameSymbolizer {
    fn get_instruction(&self) -> u64;
fn set_function(&mut self, name: &str, base: u64);
fn set_source_file(&mut self, file: &str, line: u32, base: u64); }

A trait for setting symbol information on something like a stack frame.

Required Methods

Get the program counter value for this frame.

Set the name and base address of the function in which this frame is executing.

Set the source file and (1-based) line number this frame represents.

Implementors