pub trait ErrorChainExt {
    fn display_chain(&self) -> String;
}
Expand description

Extention trait for std::error::Error to print the entire chain of the error

Required Methods

Return a string intented for logging or printing that formats an error’s entire error source chain

Implementors