Trait trace_error::backtrace::BacktraceFmt [] [src]

pub trait BacktraceFmt {
    fn format(count: u32, symbol: &Symbol) -> String;
    fn format_captured(count: u32, symbol: &BacktraceSymbol) -> String;
}

Trait to define formatting for backtrace symbols

Required Methods

Formats backtrace symbol components in some way

Same as BacktraceFmt::format, but accepts a captured BacktraceSymbol instead

Implementors