Writing a little chat server in async Rust. Series: Language basics, More syntax, Traits and generics, Building applications, Concurrency and paralle… ...more
Writing a one-shot queue using async Rust, this time with a little less help. Series: Language basics, More syntax, Traits and generics, Building app… ...more
Writing our own multi-producer-single-consumer (MPSC) queue using async Rust. Series: Language basics, More syntax, Traits and generics, Building app… ...more
We talked about how Futures have poll methods, but who calls them? That is the job of the runtime. We talk about how to launch your async code and how… ...more
Attempting to explain as slowly as possible what actually happens when the compiler finds an async function containing awaits: it writes a poll method… ...more