From 0f86e6f8150c90afd830610a7b288db944607b5d Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Fri, 12 Sep 2025 20:52:44 -0700 Subject: [PATCH] Delete unused `pub struct Color`. --- src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9fb06c7..b92eeeb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -504,14 +504,6 @@ pub enum DecodeError { IntegerOverflow, } -#[derive(Debug, Copy, Clone, PartialEq, Eq)] -pub struct Color { - r: u8, - g: u8, - b: u8, - a: u8, -} - #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum ChunkType { ImageHeader,