Remove missing_debug_implementations lint

This commit is contained in:
Héctor Ramón Jiménez 2025-09-12 05:25:09 +02:00
parent 89b7585465
commit 5796ba272e
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
70 changed files with 0 additions and 90 deletions

View file

@ -6,7 +6,6 @@ use winit::window::{Window, WindowId};
/// A buffer for short-term storage and transfer within and between
/// applications.
#[allow(missing_debug_implementations)]
pub struct Clipboard {
state: State,
}

View file

@ -24,7 +24,6 @@ use winit::monitor::MonitorHandle;
use std::collections::BTreeMap;
use std::sync::Arc;
#[allow(missing_debug_implementations)]
pub struct WindowManager<P, C>
where
P: Program,
@ -157,7 +156,6 @@ where
}
}
#[allow(missing_debug_implementations)]
pub struct Window<P, C>
where
P: Program,