AsBacktrace

Trait AsBacktrace 

Source
pub trait AsBacktrace {
    // Required method
    fn as_backtrace(&self) -> Option<&Backtrace>;
}
Expand description

View a backtrace-like value as an optional backtrace.

Required Methods§

Source

fn as_backtrace(&self) -> Option<&Backtrace>

Retrieve the optional backtrace

Implementations on Foreign Types§

Source§

impl AsBacktrace for Option<Backtrace>

Source§

impl<T> AsBacktrace for Box<T>
where T: AsBacktrace,

Source§

impl<T> AsBacktrace for Rc<T>
where T: AsBacktrace,

Source§

impl<T> AsBacktrace for Arc<T>
where T: AsBacktrace,

Implementors§