mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-06-07 06:04:47 +00:00
11 lines
501 B
Markdown
11 lines
501 B
Markdown
# 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][1] is essential reading. The [tokio docs][2] are also very helpful!
|
|
|
|
[1]: https://doc.rust-lang.org/book/ch17-00-async-await.html
|
|
[2]: https://tokio.rs/tokio/tutorial
|