[−][src]Trait err_context::BoxedErrorExt
An equivalent of ErrorExt
for boxed errors.
This is effectively the same trait as ErrorExt
, but for boxed errors. It exists separately
purely for implementation reasons.
Required methods
fn context<M: Display>(self, msg: M) -> BoxContext<M, E>
Equivalent of ErrorExt::context
.
fn chain(&self) -> Chain<'_>ⓘ
Equivalent of ErrorExt::chain
.
Provided methods
fn find_source<T: Error + 'static>(&self) -> Option<&T>
Equivalent of ErrorExt::find_source
.
fn display<S: Display>(&self, separator: S) -> DisplayChain<'_, S>
Equivalent of ErrorExt::display
.