Hacker News new | ask | show | jobs
by misterio7 1098 days ago
Honest question: what is it that you dislike in async rust? I personally find it is pretty straightforward
1 comments

I also don’t have any real issues with async rust. It would be nice if there were a better functional-style interface than what you can get with FuturesExt, but you just drop to procedural style when you need to and it’s fine.
Yeah the only painpoint I have is that it's awkward to use async inside closures, otherwise, things are pretty smooth IMO.