chore: apply clippy fixes (#3092)

This commit is contained in:
Fabian-Lars
2025-11-09 18:43:17 +01:00
committed by GitHub
parent 5cd7778723
commit 5438a5cd22
6 changed files with 11 additions and 32 deletions
+2 -6
View File
@@ -8,18 +8,14 @@ use serde::Deserialize;
#[derive(Deserialize, Debug)]
#[serde(untagged)]
#[derive(Default)]
pub enum Application {
#[default]
Default,
Enable(bool),
App(String),
}
impl Default for Application {
fn default() -> Self {
Self::Default
}
}
#[derive(Deserialize)]
#[serde(untagged, rename_all = "camelCase")]
pub(crate) enum EntryRaw {