Trait tracerr::WrapTraced[][src]

pub trait WrapTraced<E> {
    fn wrap_traced(self, f: Frame) -> Traced<E>;
}
Expand description

Trait for wrapping errors into a Traced wrapper and growing Trace inside.

Sealed

This trait is exposed only for being available inside macro invocations, so, outside this library in any code the following MUST BE met:

  • NEITHER this trait is implemented directly;
  • NOR its methods are invoked directly.

Required methods

Wraps given error into Traced wrapper with storing given Frame of Trace inside.

Implementors