StacktraceEntry

Type Alias StacktraceEntry 

Source
pub type StacktraceEntry = StacktraceEntry;
Expand description

Represents the information about one line of the stack trace.

Aliased Type§

pub struct StacktraceEntry {
    pub address: u64,
    pub function: String,
    pub module: String,
    pub offset: u64,
    pub debug: DebugInfo,
}

Fields§

§address: u64

Function address

§function: String

Function name

§module: String

Module name

§offset: u64

Offset in module

§debug: DebugInfo

Debug information