Struct gdb_command::stacktrace::StacktraceEntry
source · pub struct StacktraceEntry {
pub address: u64,
pub function: String,
pub module: String,
pub offset: u64,
pub debug: DebugInfo,
}
Expand description
StacktraceEntry
struct represents the information about one line of the stack trace.
Fields§
§address: u64
Function address
function: String
Function name
module: String
Module name
offset: u64
Offset in module
debug: DebugInfo
Debug information
Implementations§
Trait Implementations§
source§impl Clone for StacktraceEntry
impl Clone for StacktraceEntry
source§fn clone(&self) -> StacktraceEntry
fn clone(&self) -> StacktraceEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StacktraceEntry
impl Debug for StacktraceEntry
source§impl Default for StacktraceEntry
impl Default for StacktraceEntry
source§fn default() -> StacktraceEntry
fn default() -> StacktraceEntry
Returns the “default value” for a type. Read more