Trait CleanedErrors

Source
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.

Required Methods§

Source

fn cleaned_errors<'a, 'b, 'c>(&'a self) -> CleanedErrorText<'b, 'c>
where 'a: 'b,

Implementors§

Source§

impl<T: Error + 'static> CleanedErrors for T