I have a list of async functions in rust that I want to execute concurrently and then wait for all them to finish. The working code I have right now is
async
I also asked a similar question on the same day, but in my case I had a Result wrapped in a Future. So instead of join_all I had to use try_join_all
Result
Future
join_all