[desktop] fix: Rust compilation warnings in Tauri project

This commit is contained in:
Alexandr Stelnykovych
2025-04-23 13:45:45 +03:00
parent c94ec9ac5e
commit 09412e9222
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
use std::str::FromStr;
/// Struct representing an RGB color
#[allow(dead_code)] // Suppress warnings for unused fields in this struct only
pub(crate) struct Rgb(pub(crate) u32, pub(crate) u32, pub(crate) u32);
impl FromStr for Rgb {