async-reify
Instrument async functions to extract their continuation structure as an inspectable, serializable step graph.
The core workflow:
- Wrap futures in [
TracedFuture] to record [PollEvent]s - Use [
LabeledFuture] to attach source labels to await points - Extract an [
AsyncStepGraph] from the collected trace - Optionally serialize to JSON or render as Graphviz DOT
Examples
use ;
# block_on;