@@ -218,24 +218,24 @@ pub enum Verbosity {
218
218
pub struct WidthHeuristics {
219
219
// Maximum width of the args of a function call before falling back
220
220
// to vertical formatting.
221
- pub fn_call_width : usize ,
221
+ pub ( crate ) fn_call_width : usize ,
222
222
// Maximum width of the args of a function-like attributes before falling
223
223
// back to vertical formatting.
224
- pub attr_fn_like_width : usize ,
224
+ pub ( crate ) attr_fn_like_width : usize ,
225
225
// Maximum width in the body of a struct lit before falling back to
226
226
// vertical formatting.
227
- pub struct_lit_width : usize ,
227
+ pub ( crate ) struct_lit_width : usize ,
228
228
// Maximum width in the body of a struct variant before falling back
229
229
// to vertical formatting.
230
- pub struct_variant_width : usize ,
230
+ pub ( crate ) struct_variant_width : usize ,
231
231
// Maximum width of an array literal before falling back to vertical
232
232
// formatting.
233
- pub array_width : usize ,
233
+ pub ( crate ) array_width : usize ,
234
234
// Maximum length of a chain to fit on a single line.
235
- pub chain_width : usize ,
235
+ pub ( crate ) chain_width : usize ,
236
236
// Maximum line length for single line if-else expressions. A value
237
237
// of zero means always break if-else expressions.
238
- pub single_line_if_else_max_width : usize ,
238
+ pub ( crate ) single_line_if_else_max_width : usize ,
239
239
}
240
240
241
241
impl fmt:: Display for WidthHeuristics {
0 commit comments