Open soenkehahn opened 6 years ago
It would be nice for development if most structs and enums would provide both Debug and PartialEq. For printing out values and for comparing during tests with assert_eq!. Would you accept a PR adding derive attributes?
Debug
PartialEq
assert_eq!
derive
Specifically I'd be interested in Debug for Color and Rect.
Color
Rect
It would be nice for development if most structs and enums would provide both
Debug
andPartialEq
. For printing out values and for comparing during tests withassert_eq!
. Would you accept a PR addingderive
attributes?