pub struct FailureSummary {
pub primary_error: String,
pub error_category: ErrorCategory,
pub duration_before_failure: u64,
pub candidates_attempted: u32,
pub failure_stage: FailureStage,
pub impact_assessment: ImpactAssessment,
}Expand description
Failure summary
Fields§
§primary_error: StringPrimary error message
error_category: ErrorCategoryError category
duration_before_failure: u64Duration before failure
candidates_attempted: u32Number of candidates attempted
failure_stage: FailureStageStage where failure occurred
impact_assessment: ImpactAssessmentImpact assessment
Trait Implementations§
Source§impl Clone for FailureSummary
impl Clone for FailureSummary
Source§fn clone(&self) -> FailureSummary
fn clone(&self) -> FailureSummary
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 FailureSummary
impl RefUnwindSafe for FailureSummary
impl Send for FailureSummary
impl Sync for FailureSummary
impl Unpin for FailureSummary
impl UnwindSafe for FailureSummary
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