brson / rust-sdl

SDL bindings for Rust
MIT License
179 stars 52 forks source link

provide `Debug` and `PartialEq` #167

Open soenkehahn opened 6 years ago

soenkehahn commented 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?

soenkehahn commented 6 years ago

Specifically I'd be interested in Debug for Color and Rect.