/// Logger line breaking style
////// ***Note*** Defaults to MultiLine
#[non_exhaustive]#[derive(Copy, Clone, Debug)]pubenumStyleConfig{/// Use a single-line format
SingleLine,/// Use a multi-line format
MultiLine,}/// Defaults to Multiline
implDefault forStyleConfig{fndefault()->Self{Self::MultiLine
}}