pub struct ErrorBreakdown {
pub parallel_processing_errors: usize,
pub resource_limit_errors: usize,
pub data_quality_errors: usize,
pub performance_threshold_errors: usize,
pub concurrency_conflict_errors: usize,
pub data_corruption_errors: usize,
pub insufficient_resources_errors: usize,
pub export_interrupted_errors: usize,
}
Expand description
error breakdown
Fields§
§parallel_processing_errors: usize
parallel processing errors
resource_limit_errors: usize
resource limit errors
data_quality_errors: usize
data quality errors
performance_threshold_errors: usize
performance threshold errors
concurrency_conflict_errors: usize
concurrency conflict errors
data_corruption_errors: usize
data corruption errors
insufficient_resources_errors: usize
insufficient resources errors
export_interrupted_errors: usize
export interrupted errors
Trait Implementations§
Source§impl Clone for ErrorBreakdown
impl Clone for ErrorBreakdown
Source§fn clone(&self) -> ErrorBreakdown
fn clone(&self) -> ErrorBreakdown
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 ErrorBreakdown
impl RefUnwindSafe for ErrorBreakdown
impl Send for ErrorBreakdown
impl Sync for ErrorBreakdown
impl Unpin for ErrorBreakdown
impl UnwindSafe for ErrorBreakdown
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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