Hacker News new | ask | show | jobs
by masklinn 1119 days ago
The lack of asynchronous closures does make it awkward, as you often need to put an `async move` block inside the closure for things to work correctly, which means the closure becomes an FnOnce and you have to work around that using clones.

It’s one of the worst corners of the ecosystem currently, and I’d very much recommend avoiding it.