Explore >> Select a destination


You are here

blog.yoshuawuyts.com
| | josephg.com
4.5 parsecs away

Travel
| | [AI summary] The user has expressed a wealth of ideas for improving the Rust programming language, covering topics like comptime, macros, macros, and more. They also mention their frustration with certain language features and the challenges of contributing to the Rust ecosystem through RFCs.
| | tmandry.gitlab.io
3.0 parsecs away

Travel
| | For just about as long as I've been working on async Rust, the topic of scoped tasks has come up. These areasync tasks that borrow from their environment, and they would come in handy in a lot of situations. Last year the standard library stabilized thread::scope which allows synchronous threads to do this. You could imagine a similar API, but with async: asyncfn fanout(data: &Vec){task::scope(|s|{// Spawn subtasks to run in parallel.
| | lewissbaker.github.io
6.7 parsecs away

Travel
| | A tweak was made to the design of coroutines in 2018 to add a capability called "symmetric transfer" which allows you to suspend one coroutine and resume another coroutine without consuming any additional stack-space. The addition of this capability lifted a key limitation of the Coroutines TS and allows for much simpler and more efficient implementation of async coroutine types without sacrificing any of the safety aspects needed to guard against stack-overflow. In this post will attempt to explain the stack-overflow problem and how the addition of this key "symmetric transfer" capability lets us solve this problem.
| | theincredibleholk.org
35.8 parsecs away

Travel
| As I've written about before, one of the major features we're working on adding to Rust is to allow async functions in traits. Today we have support in nightly ...