pub struct FlakeSummary {
pub total_observations: usize,
pub final_e_value: f64,
pub is_flaky: bool,
pub first_flaky_at: Option<usize>,
pub max_e_value: f64,
pub threshold: f64,
}Expand description
Summary of flake detection run.
Fields§
§total_observations: usizeTotal observations.
final_e_value: f64Final e-value.
is_flaky: boolWhether flagged as flaky.
first_flaky_at: Option<usize>Observation index where flakiness was first detected (if any).
max_e_value: f64Maximum e-value observed.
threshold: f64Threshold used.
Trait Implementations§
Source§impl Clone for FlakeSummary
impl Clone for FlakeSummary
Source§fn clone(&self) -> FlakeSummary
fn clone(&self) -> FlakeSummary
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 FlakeSummary
impl RefUnwindSafe for FlakeSummary
impl Send for FlakeSummary
impl Sync for FlakeSummary
impl Unpin for FlakeSummary
impl UnwindSafe for FlakeSummary
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