Comment on Stack Traces Are UnderratedparentComments−johncolanduoni1yOne nice side effect of how Rust’s Futures work is that in many cases “normal” stack traces actually reflect the async/await flow accurately. You should see a series of “poll” methods called on each future in the async call chain.−the_mitsuhiko1yOnly until you spawn it into an executor :(
Comments
One nice side effect of how Rust’s Futures work is that in many cases “normal” stack traces actually reflect the async/await flow accurately. You should see a series of “poll” methods called on each future in the async call chain.
Only until you spawn it into an executor :(