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
47
48
49
50
51
52
//! This module defines the `Finding`, a struct that represents a vulnerability found by a
//! `ScanModule`.
/// A struct that represents a vulernability found by a `ScanModule`.
/// An enum that represents severity. While not necessarily limited to findings, they are commonly
/// used in the `Finding` struct to designate the severity of a finding related to a privacy
/// or security vulnerability. The following documentation assumes this use case.
///
/// The attached `String` is a description of the potential ramifications of the vulnerability.
/// For example, this explanation string may be `likely indicates malicious software` or,
/// alternatively, `not an issue`. This should not be a full sentence.