pub trait ErrorChainExt {
    fn chain(&self) -> DisplayErrorChain<'_, Self>;
}
Expand description

An extension trait for Error types to display their sources in a chain.

Required Methods

Provides an fmt::Display implementation for an error as a chain.

Implementors