Hacker News new | ask | show | jobs
by pjmlp 1390 days ago
Try to write a native GUI application in Rust, or async code, and you will see how little you have to think about it.
1 comments

Yes, GUI work is a pain because of the way event loops and ownership in existing UI toolkits work, they're generally not designed for this. But Arc<Mutex< is likely your friend here.

Async can be a pain, but you learn the ways. I work in a codebase with quite a bit of it.

There are appropriate and inappropriate places to apply Rust.

It surely is my friend, and I will need to manually call clone() and borrow().