Async Task Locals From Scratch
Summary
A Rust-focused guide that implements Task-Local storage without Tokio by using a Scoped wrapper around Future.poll, leveraging thread-local storage to manage per-task data across async boundaries. It includes code samples and a tokio-like API to demonstrate how task-locals can be built from scratch.