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
53
54
55
56
57
58
59
60
61
62
#[derive(Debug)]
pub struct Cfg {
tab_len: usize,
tab_level: u8,
columns: usize,
}
impl Default for Cfg {
fn default() -> Self {
Self::new(4, 0, 128)
}
}
impl Cfg {
pub const fn new(tab_len: usize, tab_level: u8, columns: usize) -> Self {
Self {
tab_len,
tab_level,
columns,
}
}
pub fn tab_len(&self) -> usize {
self.tab_len
}
pub fn tab_level(&self) -> u8 {
self.tab_level
}
pub fn increment_level(&self) -> Self {
Self::new(self.tab_len, self.tab_level.saturating_add(1), self.columns)
}
pub fn columns(&self) -> usize {
self.columns
}
}