pub trait ToTraitBasedError {
// Required method
fn to_trait_error(
self,
category: ErrorCategoryType,
severity: ErrorSeverity,
) -> TraitBasedError;
}Expand description
Helper to convert anyhow::Error to TraitBasedError