mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-06-07 06:04:47 +00:00
Async
Rust includes built-in support for asynchronous programming. In other languages, this might be known as Promises or Coroutines. async programming uses async functions, which are powerful, but may require some getting used to, especially if you haven't used something similar in another language.
The relevant book chapter is essential reading. The tokio docs are also very helpful!