pub trait CleanedErrors {
// Required method
fn cleaned_errors<'a, 'b, 'c>(&'a self) -> CleanedErrorText<'b, 'c> ⓘ
where 'a: 'b;
}Expand description
Provides the cleaned_errors method on errors, which returns an iterator that removes duplicated error messages from the error and its sources.