Trait minidump_processor::FrameSymbolizer[][src]

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

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, base address, and paramter size of the function in

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

Implementations on Foreign Types

Implementors