Skip to main content

Backtrace

Trait Backtrace 

Source
pub trait Backtrace {
    // Required method
    fn frames(&self) -> Vec<Frame>;
}
Expand description

Abstraction over backtrace library implementations.

Required Methods§

Source

fn frames(&self) -> Vec<Frame>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Backtrace for Backtrace

Available on crate feature use-backtrace-crate only.
Source§

fn frames(&self) -> Vec<Frame>

Implementors§