iced-rs/iced

Widget states should implement standard traits eagerly

Open

#790 opened on Mar 21, 2021

View on GitHub
 (2 comments) (0 reactions) (0 assignees)Rust (1,572 forks)batch import
featuregood first issuequestionwidget

Repository metrics

Stars
 (30,491 stars)
PR merge metrics
 (Avg merge 24d 11h) (11 merged PRs in 30d)

Description

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).

Contributor guide