From 4c213db5fb97a928a2c3d0dcf695f9ccad058cdf Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sat, 30 Jan 2021 18:52:42 +0100 Subject: [PATCH] Fix clippy warnings --- espanso-detect/src/win32/mod.rs | 3 ++- espanso-ui/src/win32/mod.rs | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/espanso-detect/src/win32/mod.rs b/espanso-detect/src/win32/mod.rs index 040179c..c20cf83 100644 --- a/espanso-detect/src/win32/mod.rs +++ b/espanso-detect/src/win32/mod.rs @@ -78,6 +78,7 @@ pub struct Win32Source { callback: LazyCell, } +#[allow(clippy::new_without_default)] impl Win32Source { pub fn new() -> Win32Source { Self { @@ -101,7 +102,7 @@ impl Win32Source { panic!("Attempt to start Win32Source eventloop without initialization"); } - if let Err(_) = self.callback.fill(event_callback) { + if self.callback.fill(event_callback).is_err() { panic!("Unable to set Win32Source event callback"); } diff --git a/espanso-ui/src/win32/mod.rs b/espanso-ui/src/win32/mod.rs index ab9d9e3..c9531a2 100644 --- a/espanso-ui/src/win32/mod.rs +++ b/espanso-ui/src/win32/mod.rs @@ -127,10 +127,10 @@ impl Win32EventLoop { // Convert the icon paths to the raw representation let mut icon_paths: [[u16; MAX_FILE_PATH]; MAX_ICON_COUNT] = [[0; MAX_FILE_PATH]; MAX_ICON_COUNT]; - for i in 0..self.icons.len() { + for (i, icon_path) in icon_paths.iter_mut().enumerate().take(self.icons.len()) { let wide_path = WideString::from_str(&self.icons[i]); let len = min(wide_path.len(), MAX_FILE_PATH - 1); - icon_paths[i][0..len].clone_from_slice(&wide_path.as_slice()[..len]); + icon_path[0..len].clone_from_slice(&wide_path.as_slice()[..len]); // TODO: test overflow, correct case } @@ -170,7 +170,7 @@ impl Win32EventLoop { // TODO: test } - if let Err(_) = self._event_callback.fill(event_callback) { + if self._event_callback.fill(event_callback).is_err() { panic!("Unable to set Win32EventLoop callback"); } @@ -238,11 +238,11 @@ impl Win32Remote { unsafe { ui_update_tray_icon(handle, (*index) as i32) } } else { error!("Unable to update tray icon, invalid icon id"); - return; } } } +#[allow(clippy::single_match)] // TODO: remove after another match is used impl From for Option { fn from(raw: RawUIEvent) -> Option { match raw.event_type {