pub enum FlakySeverity {
Critical,
High,
Medium,
Low,
}Expand description
Severity classification for flaky tests.
Variants§
Critical
Pass rate < 50% — almost always fails, likely a real bug
High
Pass rate 50-80% — frequently flaky
Medium
Pass rate 80-95% — occasionally flaky
Low
Pass rate > 95% — rarely flaky, possibly environment-dependent
Implementations§
Trait Implementations§
Source§impl Clone for FlakySeverity
impl Clone for FlakySeverity
Source§fn clone(&self) -> FlakySeverity
fn clone(&self) -> FlakySeverity
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 moreSource§impl Debug for FlakySeverity
impl Debug for FlakySeverity
Source§impl PartialEq for FlakySeverity
impl PartialEq for FlakySeverity
impl StructuralPartialEq for FlakySeverity
Auto Trait Implementations§
impl Freeze for FlakySeverity
impl RefUnwindSafe for FlakySeverity
impl Send for FlakySeverity
impl Sync for FlakySeverity
impl Unpin for FlakySeverity
impl UnsafeUnpin for FlakySeverity
impl UnwindSafe for FlakySeverity
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