Derive Clone and implement From<String> for automatic Clap parsing.

This commit is contained in:
Bauke 2024-01-18 14:32:14 +01:00
parent 6b6c48c476
commit a9ee3c20fe
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 14 additions and 1 deletions

View File

@ -3,7 +3,7 @@
use serde::{Deserialize, Serialize};
/// The noise level Hooked should output logs with.
#[derive(Debug, Deserialize, Eq, PartialEq, Serialize)]
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum NoiseLevel {
/// Output only errors.
@ -22,3 +22,16 @@ impl Default for NoiseLevel {
Self::Standard
}
}
// Implement `From<String>` so we can use Clap's automatic parsing in the CLI.
impl From<String> for NoiseLevel {
fn from(value: String) -> Self {
match value.to_lowercase().as_str() {
"quiet" => Self::Quiet,
"loud" => Self::Loud,
"standard" => Self::Standard,
"minimal" => Self::Minimal,
_ => NoiseLevel::default(),
}
}
}