Trait dangerous::error::BacktraceBuilder[][src]

pub trait BacktraceBuilder {
    const PASSTHROUGH: bool;

    fn from_root(context: CoreContext) -> Self;
fn push(&mut self, context: impl Context); }
Expand description

Implemented for Backtrace builders.

Associated Constants

Required methods

Create the builder from a root expected context.

Push a context onto the stack.

Implementors