Struct backtrace::BacktraceSymbol [] [src]

pub struct BacktraceSymbol {
    // some fields omitted
}

Captured version of a symbol in a backtrace.

This type is returned as a list from BacktraceFrame::symbols and represents the metadata for a symbol in a backtrace.

Trait Implementations

impl Symbol for BacktraceSymbol
[src]

fn name(&self) -> Option<SymbolName>

Returns the name of this function. Read more

fn addr(&self) -> Option<*mut c_void>

Returns the starting address of this function.

fn filename(&self) -> Option<&Path>

Returns the file name where this function was defined. Read more

fn lineno(&self) -> Option<u32>

Returns the line number for where this symbol is currently executing. Read more