pprof-backtrace 0.3.63

A library to acquire a stack trace (backtrace) at runtime in a Rust program. Fork from https://github.com/rust-lang/backtrace-rs/tree/0.3.61.
Documentation
1
2
3
4
5
use backtrace::Backtrace;

fn main() {
    println!("{:?}", Backtrace::new());
}