sampr 0.1.0

A message passing framework using actors
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
/// Error type for the _sampr_ crate.
pub enum Error {
    /// Receiving actor has stopped before a sent message has returned a result.
    ///
    /// The receiving actor might or might not have started to process the message.
    #[error("receiver has stopped")]
    ReceiverShutdown,
}