Stackless Coroutine
A suspendable computation the compiler lowers into a state machine that stores only its live variables rather than a full call stack — the model Rust uses to implement async fn.
grounded in: Latest-trends theme 'Rust and systems-level concurrency — async concurrency pitfalls are a live debate'; it is the root abstraction under the existing future-pinning / poll-based-futures / function-co
Connected concepts
Poll-based futures, Pinning (self-referential futures), Function coloring, Async runtime, Send + Sync marker traits
Explore it live in the knowledge graph →