recoverable-spawn 3.9.19

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.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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.

mod r#async;
mod common;
mod sync;

pub use {r#async::*, common::*, sync::*};

use std::{any::Any, panic::set_hook, sync::Arc};

use tokio::task::JoinError;