cargo-gamma-lib 0.1.0

Internal library for cargo-gamma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! What a SARIF rendering left out, if anything.

/// What a SARIF rendering left out, if anything.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Truncation {
    /// How many findings there were.
    ///
    /// Uncovered mutants are among them, not only survivors.
    pub found: usize,

    /// How many the log contains.
    pub written: usize,
}