Back to Developer Roadmap

Futures and Async/Await Paradigm

src/data/roadmaps/rust/content/[email protected]

4.0635 B
Original Source

Futures and Async/Await Paradigm

Futures represent asynchronous computations that produce values or errors eventually. The async/await syntax provides ergonomic programming over futures, allowing asynchronous code to look synchronous. Futures are lazy and must be polled to make progress, forming the foundation of Rust's async ecosystem.

Visit the following resources to learn more: