File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -47,20 +47,20 @@ pub struct FormatOptions {
4747#[derive(Clone, Copy, Debug)]
4848pub struct Margin {
4949 /// The available whitespace in the left that can be consumed when centering.
50- pub whitespace_left: usize,
50+ whitespace_left: usize,
5151 /// The column of the beginning of left-most span.
52- pub span_left: usize,
52+ span_left: usize,
5353 /// The column of the end of right-most span.
54- pub span_right: usize,
54+ span_right: usize,
5555 /// The beginning of the line to be displayed.
56- pub computed_left: usize,
56+ computed_left: usize,
5757 /// The end of the line to be displayed.
58- pub computed_right: usize,
58+ computed_right: usize,
5959 /// The current width of the terminal. 140 by default and in tests.
60- pub column_width: usize,
60+ column_width: usize,
6161 /// The end column of a span label, including the span. Doesn't account for labels not in the
6262 /// same line as the span.
63- pub label_right: usize,
63+ label_right: usize,
6464}
6565
6666impl Margin {
You can’t perform that action at this time.
0 commit comments