Struct backtrace::Backtrace [−][src]
pub struct Backtrace { /* fields omitted */ }
Representation of an owned and self-contained backtrace.
This structure can be used to capture a backtrace at various points in a program and later used to inspect what the backtrace was at that time.
Methods
impl Backtrace
[src]
impl Backtrace
pub fn new() -> Backtrace
[src]
pub fn new() -> Backtrace
Captures a backtrace at the callsite of this function, returning an owned representation.
This function is useful for representing a backtrace as an object in Rust. This returned value can be sent across threads and printed elsewhere, and thie purpose of this value is to be entirely self contained.
Examples
use backtrace::Backtrace; let current_backtrace = Backtrace::new();
pub fn frames(&self) -> &[BacktraceFrame]
[src]
pub fn frames(&self) -> &[BacktraceFrame]
Returns the frames from when this backtrace was captured.
The first entry of this slice is likely the function Backtrace::new
,
and the last frame is likely something about how this thread or the main
function started.
Trait Implementations
impl Clone for Backtrace
[src]
impl Clone for Backtrace
fn clone(&self) -> Backtrace
[src]
fn clone(&self) -> Backtrace
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for Backtrace
[src]
impl Debug for Backtrace
fn fmt(&self, fmt: &mut Formatter) -> Result
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for Backtrace
[src]
impl Default for Backtrace