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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
use crate::{Alignment, Excess, ExcessHandler, ExcessHandlingFunction, Width};
use core::fmt::{Display, Error, Formatter};
#[cfg(feature = "std")]
use derive_builder::Builder;
#[derive(Debug, Clone, Copy)]
#[cfg_attr(feature = "std", derive(Builder))]
pub struct PaddedValue<
Value,
PadBlock = char,
HandleExcess = ExcessHandlingFunction<Value, PadBlock>,
Pad = Alignment,
> where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
pub value: Value,
pub pad_block: PadBlock,
pub total_width: usize,
pub pad: Pad,
pub handle_excess: HandleExcess,
}
impl<Value, PadBlock, HandleExcess, Pad> Display for PaddedValue<Value, PadBlock, HandleExcess, Pad>
where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error> {
let PaddedValue {
value,
pad_block,
total_width,
pad,
handle_excess,
} = self;
let total_width = *total_width;
let value_width = value.width();
let pad_width = if total_width >= value_width {
total_width - value_width
} else {
return handle_excess.handle_excess(
Excess {
value,
value_width,
total_width,
pad_block,
},
formatter,
);
};
pad.fmt(formatter, value, pad_block, pad_width)
}
}
impl<Value, PadBlock, HandleExcess, Pad> Width for PaddedValue<Value, PadBlock, HandleExcess, Pad>
where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
fn width(&self) -> usize {
self.total_width
}
}