- any rust gurus know how i can customize the state machine impl of Future that rustc generates from async fnsMay 15, 2025 07:04
- current best idea is to make a proc macro that takes the body of the function and inserts it into a new function eg. fn wrapped_fn() -> impl Future<...> { future_wrapper::new( async {<previous body>} ) }