pub trait FmtCompactAnyhow<'a> {
type Report: Display + 'a;
// Required method
fn fmt_compact_anyhow(self) -> Self::Report;
}
Expand description
Simple utility trait to print error chains (for anyhow::Error
)
pub trait FmtCompactAnyhow<'a> {
type Report: Display + 'a;
// Required method
fn fmt_compact_anyhow(self) -> Self::Report;
}
Simple utility trait to print error chains (for anyhow::Error
)