Remove missing_debug_implementations lint
This commit is contained in:
parent
89b7585465
commit
5796ba272e
70 changed files with 0 additions and 90 deletions
|
|
@ -7,7 +7,6 @@ use crate::triangle;
|
|||
use std::sync::{Arc, RwLock};
|
||||
|
||||
#[derive(Clone)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Engine {
|
||||
pub(crate) device: wgpu::Device,
|
||||
pub(crate) queue: wgpu::Queue,
|
||||
|
|
|
|||
|
|
@ -92,7 +92,6 @@ impl Cached for Geometry {
|
|||
}
|
||||
|
||||
/// A frame for drawing some geometry.
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Frame {
|
||||
clip_bounds: Rectangle,
|
||||
buffers: BufferStack,
|
||||
|
|
|
|||
|
|
@ -72,7 +72,6 @@ use crate::graphics::text::{Editor, Paragraph};
|
|||
///
|
||||
/// [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
|
||||
/// [`iced`]: https://github.com/iced-rs/iced
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Renderer {
|
||||
engine: Engine,
|
||||
|
||||
|
|
|
|||
|
|
@ -197,7 +197,6 @@ pub trait Renderer: core::Renderer {
|
|||
|
||||
/// Stores custom, user-provided types.
|
||||
#[derive(Default)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Storage {
|
||||
pipelines: FxHashMap<TypeId, Box<dyn AnyConcurrent>>,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -269,7 +269,6 @@ impl Viewport {
|
|||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Pipeline {
|
||||
format: wgpu::TextureFormat,
|
||||
cache: cryoglyph::Cache,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ use crate::settings::{self, Settings};
|
|||
use crate::{Engine, Renderer};
|
||||
|
||||
/// A window graphics backend for iced powered by `wgpu`.
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct Compositor {
|
||||
instance: wgpu::Instance,
|
||||
adapter: wgpu::Adapter,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue