tokio::join! lets you run multiple futures concurrently, and returns the output of all of them. For JavaScript developers: Promise.all is a good equivalent.| fettblog.eu
This is a long section. Here are some anchors to jump to the respective part:| fettblog.eu
Articles on web dev and software engineering: TypeScript, JavaScript, Rust, and more!| fettblog.eu
Articles on web dev and software engineering: TypeScript, JavaScript, Rust, and more!| fettblog.eu
Waits on multiple concurrent branches, returning when the first branch completes, cancelling the remaining branches.| docs.rs