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
Derived Implementations
impl Clone for BacktraceSymbol[src]
fn clone(&self) -> BacktraceSymbol
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more