We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente3d5e65 commitdae1a97Copy full SHA for dae1a97
src/display_list/structs.rs
@@ -47,20 +47,20 @@ pub struct FormatOptions {
47
#[derive(Clone,Copy,Debug)]
48
pubstructMargin{
49
/// The available whitespace in the left that can be consumed when centering.
50
-pubwhitespace_left:usize,
+whitespace_left:usize,
51
/// The column of the beginning of left-most span.
52
-pubspan_left:usize,
+span_left:usize,
53
/// The column of the end of right-most span.
54
-pubspan_right:usize,
+span_right:usize,
55
/// The beginning of the line to be displayed.
56
-pubcomputed_left:usize,
+computed_left:usize,
57
/// The end of the line to be displayed.
58
-pubcomputed_right:usize,
+computed_right:usize,
59
/// The current width of the terminal. 140 by default and in tests.
60
-pubcolumn_width:usize,
+column_width:usize,
61
/// The end column of a span label, including the span. Doesn't account for labels not in the
62
/// same line as the span.
63
-publabel_right:usize,
+label_right:usize,
64
}
65
66
implMargin{