what's the rust way to turn a `Vec<Future<_,...
# development
h
what's the rust way to turn a
Vec<Future<_,_>>
into a
Future<Vec<_>,_>
?
a
i just use .collect()
a
futures::future::join_all