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
use serde_derive::Deserialize;
pub const REDACT_PLACEHOLDER: &str = "[TEXT_REDACTED]";
#[derive(Debug, Deserialize, Clone)]
pub struct Pattern {
#[serde(with = "serde_regex")]
pub test: regex::Regex,
pub group: usize,
}
#[derive(Debug, Deserialize, Clone)]
pub struct Info {
pub string: String,
pub captures: Vec<Captures>,
}
#[derive(Debug, Deserialize, Clone)]
pub struct Captures {
pub text: String,
pub test: String,
pub position: Option<Position>,
}
#[derive(Debug, Deserialize, Clone)]
pub struct Position {
pub line: usize,
pub start_offset: usize,
pub end_offset: usize,
}