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
#[derive(Debug, Clone)]
pub enum Align {
    Left,
    Right,
}

impl Default for Align {
    fn default() -> Self {
        Self::Left
    }
}

#[derive(Debug, Clone)]
pub struct Style {
    pub align: Align,

    pub indent: usize,

    pub padding_char: char,

    pub wrap_width: usize,

    pub row_spacing: usize,

    pub line_spacing: usize,

    pub block_spacing: usize,
}

impl Default for Style {
    fn default() -> Self {
        Self {
            align: Align::default(),
            indent: 2,
            padding_char: ' ',
            wrap_width: 0,
            row_spacing: 4,
            line_spacing: 0,
            block_spacing: 1,
        }
    }
}

impl Style {
    pub fn take(&mut self) -> Self {
        std::mem::take(self)
    }
}