Marek Bernat
Marek Bernat
Still happens on 0.7.2.
Correct me if I'm wrong but you can always run an async runtime inside a blocking function (such as inside actor's `handle`). There also exist tiny single-threaded executors that could...
I think `catch_unwind` is the recommended way to handle subsystem panics, whether that's request handling in web servers or actors in an actor system. One potential issue is that the...
1. I believe the guideline is to use bespoke errors for libraries as much as possible; `thiserror` helps with this. 2. The other option is to use something like `Box`....