1use crate::Settings;
2pub use textwrap::indent;
3
4impl Default for Settings {
5 fn default() -> Self {
6 Settings {
7 arc_symbol_set: String::from("="),
8 arc_indent: 4,
9 arc_dict_separator: String::from(""),
10 arc_list_separator: String::from(""),
11 arc_list_max_length: 128,
12 }
13 }
14}