/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

theincredibleholk.org
| | hackmd.io
1.7 parsecs away

Travel
| | # Async fns in traits **This doc now lives here: https://rust-lang.github.io/async-fundamentals-ini
| | without.boats
1.9 parsecs away

Travel
| | [AI summary] The blog post discusses the introduction of async/await syntax in Rust through two RFCs, focusing on language features and their implications for asynchronous programming.
| | tokio.rs
3.8 parsecs away

Travel
| | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more.
| | boats.gitlab.io
17.8 parsecs away

Travel
| One of the big sources of difficulty on the async ecosystem is spawning tasks. Because there is no API in std for spawning tasks, library authors who want their library to spawn tasks have to depend on one of the multiple executors in the ecosystem to spawn a task, coupling the library to that executor in undesirable ways. Ideally, many of these library authors would not need to spawn tasks at all.