act_rs 0.5.0

Act.rs is a minimal actor framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::any::Any;

use async_trait::async_trait;

#[async_trait]
pub trait AsyncPanicHandler : Send + Sync
{

    async fn handle_panic(&self, boxed_panic: Box<dyn Any + Send>);
    
}