2025-05-16 15:53:31 +02:00

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