@@ -218,24 +218,24 @@ pub enum Verbosity {
218218pub struct WidthHeuristics {
219219 // Maximum width of the args of a function call before falling back
220220 // to vertical formatting.
221- pub fn_call_width : usize ,
221+ pub ( crate ) fn_call_width : usize ,
222222 // Maximum width of the args of a function-like attributes before falling
223223 // back to vertical formatting.
224- pub attr_fn_like_width : usize ,
224+ pub ( crate ) attr_fn_like_width : usize ,
225225 // Maximum width in the body of a struct lit before falling back to
226226 // vertical formatting.
227- pub struct_lit_width : usize ,
227+ pub ( crate ) struct_lit_width : usize ,
228228 // Maximum width in the body of a struct variant before falling back
229229 // to vertical formatting.
230- pub struct_variant_width : usize ,
230+ pub ( crate ) struct_variant_width : usize ,
231231 // Maximum width of an array literal before falling back to vertical
232232 // formatting.
233- pub array_width : usize ,
233+ pub ( crate ) array_width : usize ,
234234 // Maximum length of a chain to fit on a single line.
235- pub chain_width : usize ,
235+ pub ( crate ) chain_width : usize ,
236236 // Maximum line length for single line if-else expressions. A value
237237 // 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 ,
239239}
240240
241241impl fmt:: Display for WidthHeuristics {
0 commit comments