A thread that supports automatic recovery from panics, allowing threads to restart after a panic. Useful for resilient and fault-tolerant concurrency in network and web programming.
//! recoverable-spawn
//!//! A thread that supports automatic recovery from panics,
//! allowing threads to restart after a panic. Useful for resilient
//! and fault-tolerant concurrency in network and web programming.
modr#async;modcommon;modsync;pubuse{r#async::*,common::*,sync::*};usestd::{any::Any,panic::set_hook,sync::Arc};usetokio::task::JoinError;