1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! One mutant's most recent verdict, and when it was earned.
use crateMutantResult;
/// One mutant's most recent verdict, and when it was earned.
///
/// Borrowed from the reports that were read, rather than owning a copy of each. Every mutant of
/// every input passes through here, and all but the winner of each identity is discarded — so
/// copying on the way in pays for the losers as well, and the winners are copied again when the
/// merged document is built. The reports outlive the merge, which is what makes the borrow possible.
pub