pub struct HealthScore {
pub score: f64,
pub pass_rate: f64,
pub stability: f64,
pub performance: f64,
pub coverage: Option<f64>,
}Expand description
Overall test suite health score (0-100).
Fields§
§score: f64Overall score (0-100)
pass_rate: f64Pass rate component (0-100)
stability: f64Stability component (0-100) — low flakiness
performance: f64Performance component (0-100) — consistent durations
coverage: Option<f64>Coverage component (0-100) — if available
Implementations§
Trait Implementations§
Source§impl Clone for HealthScore
impl Clone for HealthScore
Source§fn clone(&self) -> HealthScore
fn clone(&self) -> HealthScore
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 HealthScore
impl RefUnwindSafe for HealthScore
impl Send for HealthScore
impl Sync for HealthScore
impl Unpin for HealthScore
impl UnsafeUnpin for HealthScore
impl UnwindSafe for HealthScore
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