#[derive(Debug, Clone)]pubstructConfig{pub(crate)indent_size:usize,
pub(crate)max_width:usize,
}implDefault forConfig{fndefault()->Self{Self{
indent_size:4,
max_width:80,}}}// Not much to see right now...
// Configuration will be handled here in the future