recoverable_spawn/
lib.rs

1//! recoverable-spawn
2//!
3//! A thread that supports automatic recovery from panics,
4//! allowing threads to restart after a panic. Useful for resilient
5//! and fault-tolerant concurrency in network and web programming.
6
7pub(crate) mod thread;
8
9pub(crate) use std::panic::set_hook;
10pub(crate) use std::sync::Arc;
11
12pub use thread::{r#async, sync, r#trait::*, r#type::*};