resource: impl Ord for Color

Allow using Color in FormattedText.
This commit is contained in:
Matthias Schiffer 2025-01-06 20:27:01 +01:00
parent 7f329ac8e7
commit 9375af8d54
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C

View file

@ -38,7 +38,7 @@ pub enum BlockFlag {
} }
/// An RGB color with u8 components /// An RGB color with u8 components
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)] #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
pub struct Color(pub [u8; 3]); pub struct Color(pub [u8; 3]);
/// An RGB color with f32 components /// An RGB color with f32 components