🛈 Note: This is pre-release documentation for the upcoming tracing 0.2.0 ecosystem.

For the release documentation, please see docs.rs, instead.

pub struct TracedError<E> { /* private fields */ }
Expand description

A wrapper type for Errors that bundles a SpanTrace with an inner Error type.

This type is a good match for the error-kind pattern where you have an error type with an inner enum of error variants and you would like to capture a span trace that can be extracted during printing without formatting the span trace as part of your display impl.

An example of implementing an error type for a library using TracedError might look like this

#[derive(Debug, thiserror::Error)]
enum Kind {
    // ...
}

#[derive(Debug)]
pub struct Error {
    source: TracedError<Kind>,
    backtrace: Backtrace,
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        self.source.source()
    }

    fn backtrace(&self) -> Option<&Backtrace> {
        Some(&self.backtrace)
    }
}

impl fmt::Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Display::fmt(&self.source, fmt)
    }
}

impl<E> From<E> for Error
where
    Kind: From<E>,
{
    fn from(source: E) -> Self {
        Self {
            source: Kind::from(source).into(),
            backtrace: Backtrace::capture(),
        }
    }
}

Implementations§

source§

impl<E> TracedError<E>
where E: Error + Send + Sync + 'static,

source

pub fn new(error: E, span_trace: SpanTrace) -> Self

Construct a TracedError given both the SpanTrace and the inner Error

source

pub fn map<F, O>(self, op: O) -> TracedError<F>
where O: FnOnce(E) -> F, F: Error + Send + Sync + 'static,

Convert the inner error type of a TracedError while preserving the attached SpanTrace.

§Examples
use tracing_error::TracedError;

let err: TracedError<InnerError> = InnerError.into();
let err: TracedError<OuterError> = err.map(|inner| OuterError(inner));
source

pub fn err_into<F>(self) -> TracedError<F>
where E: Into<F>, F: Error + Send + Sync + 'static,

Convert the inner error type of a TracedError using the inner error’s Into implementation, while preserving the attached SpanTrace.

§Examples
use tracing_error::TracedError;

impl From<InnerError> for OuterError {
    fn from(inner: InnerError) -> Self {
        Self(inner)
    }
}

let err: TracedError<InnerError> = InnerError.into();
let err: TracedError<OuterError> = err.err_into();

Trait Implementations§

source§

impl<E> Debug for TracedError<E>
where E: Error,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E> Display for TracedError<E>
where E: Error,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E> Error for TracedError<E>
where E: Error + 'static,

source§

fn source<'a>(&'a self) -> Option<&'a (dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access #99301)
Provides type based access to context intended for error reports. Read more
source§

impl<E> From<E> for TracedError<E>
where E: Error + Send + Sync + 'static,

source§

fn from(error: E) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<E> !RefUnwindSafe for TracedError<E>

§

impl<E> Send for TracedError<E>
where E: Send,

§

impl<E> Sync for TracedError<E>
where E: Sync,

§

impl<E> Unpin for TracedError<E>
where E: Unpin,

§

impl<E> !UnwindSafe for TracedError<E>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<E> InstrumentError for E
where TracedError<E>: From<E>,

§

type Instrumented = TracedError<E>

Available on crate feature traced-error only.
The type of the wrapped error after instrumentation
source§

fn in_current_span(self) -> <E as InstrumentError>::Instrumented

Available on crate feature traced-error only.
Instrument an Error by bundling it with a SpanTrace Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithCollector for T

source§

fn with_collector<C>(self, collector: C) -> WithDispatch<Self>
where C: Into<Dispatch>,

Attaches the provided collector to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_collector(self) -> WithDispatch<Self>

Attaches the current default collector to this type, returning a WithDispatch wrapper. Read more