pub trait Trace {
    fn trace(&mut self, location: &'static Location<'static>);
}
Expand description

A trait that enables return tracing for Err variants of Result.

Required Methods

Called during ? with the code location of the ? invocation.

Implementors