use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Level {
Error,
Warning,
Info,
Off,
}
impl Level {
pub fn is_actionable(self) -> bool {
matches!(self, Self::Error | Self::Warning | Self::Info)
}
pub fn as_str(self) -> &'static str {
match self {
Self::Error => "error",
Self::Warning => "warning",
Self::Info => "info",
Self::Off => "off",
}
}
}