pub struct TraceOnly<Tracer>(/* private fields */);
Expand description
An ErrorSource
that contains only the error trace with no detail.
This can for example be used for upstream functions that return tracers like
eyre::Report
directly.
Trait Implementations§
Source§impl<Trace> ErrorSource<Trace> for TraceOnly<Trace>
impl<Trace> ErrorSource<Trace> for TraceOnly<Trace>
Auto Trait Implementations§
impl<Tracer> Freeze for TraceOnly<Tracer>
impl<Tracer> RefUnwindSafe for TraceOnly<Tracer>where
Tracer: RefUnwindSafe,
impl<Tracer> Send for TraceOnly<Tracer>where
Tracer: Send,
impl<Tracer> Sync for TraceOnly<Tracer>where
Tracer: Sync,
impl<Tracer> Unpin for TraceOnly<Tracer>where
Tracer: Unpin,
impl<Tracer> UnwindSafe for TraceOnly<Tracer>where
Tracer: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more