serviceless 0.4.4

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

/// Error
#[derive(Debug, Error)]
pub enum Error {
    /// Service already stoped
    #[error("Service already stoped")]
    ServiceStoped,
}

/// Result
pub type Result<T> = std::result::Result<T, Error>;