1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use crate::Settings;
pub use textwrap::indent;

impl Default for Settings {
    fn default() -> Self {
        Settings {
            arc_symbol_set: String::from("="),
            arc_indent: 4,
            arc_dict_separator: String::from(""),
            arc_list_separator: String::from(""),
            arc_list_max_length: 128,
        }
    }
}