serviceless 0.5.9

An simple actor model in rust, like actix
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Unbounded channel closed")]
    UnboundedChannelClosed,
    #[error("Oneshot channel closed")]
    OneshotChannelClosed,
    #[error("Spawner join error")]
    JoinError(#[from] tokio::task::JoinError),
}