Trait tracerr::WrapTraced[][src]

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

Trait for wrapping errors into a Traced wrapper and growing its 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 this error into a Traced wrapper, storing the given Frame of a Trace inside.

Implementors