pub struct ErrorAggregator { /* private fields */ }Expand description
Aggregates multiple errors into a single report
Implementations§
Source§impl ErrorAggregator
impl ErrorAggregator
Sourcepub fn add_error(&mut self, error: EnhancedError) -> UtilsResult<()>
pub fn add_error(&mut self, error: EnhancedError) -> UtilsResult<()>
Add an error to the aggregator
Sourcepub fn has_errors(&self) -> bool
pub fn has_errors(&self) -> bool
Check if there are any errors
Sourcepub fn error_count(&self) -> usize
pub fn error_count(&self) -> usize
Get the number of errors
Sourcepub fn get_errors(&self) -> &[EnhancedError]
pub fn get_errors(&self) -> &[EnhancedError]
Get all errors
Sourcepub fn generate_summary(&self) -> ErrorSummary
pub fn generate_summary(&self) -> ErrorSummary
Generate an error summary
Trait Implementations§
Source§impl Clone for ErrorAggregator
impl Clone for ErrorAggregator
Source§fn clone(&self) -> ErrorAggregator
fn clone(&self) -> ErrorAggregator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ErrorAggregator
impl RefUnwindSafe for ErrorAggregator
impl Send for ErrorAggregator
impl Sync for ErrorAggregator
impl Unpin for ErrorAggregator
impl UnwindSafe for ErrorAggregator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more