Type Definition gdb_command::stacktrace::Stacktrace
source · pub type Stacktrace = Vec<StacktraceEntry>;
Expand description
Represents the information about stack trace
Trait Implementations§
source§impl StacktraceExt for Stacktrace
impl StacktraceExt for Stacktrace
source§fn from_gdb<T: AsRef<str>>(trace: T) -> Result<Stacktrace>
fn from_gdb<T: AsRef<str>>(trace: T) -> Result<Stacktrace>
Get stack trace as a string and converts it into ‘Stacktrace’ Read more
source§fn compute_module_offsets(&mut self, mappings: &MappedFiles)
fn compute_module_offsets(&mut self, mappings: &MappedFiles)
Compute module offsets for stack trace entries based on mapped files.
Gdb doesn’t print module and offset in stack trace. Read more