iced
iced copied to clipboard
Widget states should implement standard traits eagerly
The builtin widgets' states should implement standard traits (notably PartialEq
) eagerly.
It would be convenient for me to #[derive(PartialEq)]
for my app state. Unfortunately, it contains text_input::State
which doesn't impl it (but it could).
Why do you need to compare widget states?