You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to toggle stack unwinding without printing error message to stderr?
I am working on a coroutine library and I want to manually unwind the stack when destroying coroutines. But now I could only use panic! to do the trick.
The text was updated successfully, but these errors were encountered:
Thanks for the report! Right now the standard library doesn't support this sort of functionality, but it's available externally on crates.io. We may want to include this in the standard library at some point, but that's handled through RFCs and/or the nursery, so I'm going to close this issue.
Is it possible to toggle stack unwinding without printing error message to stderr?
I am working on a coroutine library and I want to manually unwind the stack when destroying coroutines. But now I could only use
panic!
to do the trick.The text was updated successfully, but these errors were encountered: