this post was submitted on 28 Nov 2021
17 points (100.0% liked)
Rust Programming
8335 readers
9 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
haven't done much GUIs on rust but i can say the Qt/GTK experience isn't good, Qt/GTK rely too much on multiple ownership and on rust that's a big no-no (basically, you either have to put everything behind a
RefCell
or useunsafe
everywhere)thankfully that problem can be avoided by simply writing the library in rust (although that does bring other problems)