Type Alias TraceError
Source pub type TraceError = Box<dyn Error + Send + Sync + 'static>;
Expand description
A generic Error wrapper for trace handler errors.
Trace handlers can define their own Error type which can be seamlessly converted
into this type since it is a Box.
pub struct TraceError();