pub trait Trace { fn trace(&mut self, location: &'static Location<'static>); }
A trait that enables return tracing for Err variants of Result.
Err
Result
Called during ? with the code location of the ? invocation.
?