pub struct FailureCorrelation {
pub pairs: Vec<CorrelatedPair>,
}Expand description
Failure correlation analysis.
Fields§
§pairs: Vec<CorrelatedPair>Tests that tend to fail together
Implementations§
Source§impl FailureCorrelation
impl FailureCorrelation
Sourcepub fn compute(history: &TestHistory, min_cooccurrences: usize) -> Self
pub fn compute(history: &TestHistory, min_cooccurrences: usize) -> Self
Compute failure correlations from history.
Trait Implementations§
Source§impl Clone for FailureCorrelation
impl Clone for FailureCorrelation
Source§fn clone(&self) -> FailureCorrelation
fn clone(&self) -> FailureCorrelation
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 FailureCorrelation
impl RefUnwindSafe for FailureCorrelation
impl Send for FailureCorrelation
impl Sync for FailureCorrelation
impl Unpin for FailureCorrelation
impl UnsafeUnpin for FailureCorrelation
impl UnwindSafe for FailureCorrelation
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