1 2 3 4 5 6 7 8 9 10
#[non_exhaustive] #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] pub enum LogLevel { Trace = 0, Debug = 1, Info = 2, Warn = 3, Error = 4, Off = 5, }