diff --git a/src/window_draw_list.rs b/src/window_draw_list.rs index 2257fae..7bb4e5c 100644 --- a/src/window_draw_list.rs +++ b/src/window_draw_list.rs @@ -12,7 +12,7 @@ use std::marker::PhantomData; /// The type implements `From`, `From`, `From<[f32; 4]>`, /// `From<[f32; 3]>`, `From<(f32, f32, f32, f32)>` and `From<(f32, f32, f32)>` /// for convenience. If alpha is not provided, it is assumed to be 1.0 (255). -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Eq, PartialEq, Debug)] pub struct ImColor(ImU32); impl From for ImU32 {