useowo_colors::Style;#[derive(Debug, Clone)]pubstructLogLevel{/// The name of the level
pubname: String,
/// Style to use when outputting the level
pubstyle: Style,
// The position of the level
pubposition:Option<usize>,
}implLogLevel{pubfnnew(name: String, style: Style)->Self{Self{ name, style, position:None}}}