chekov 0.1.1

CQRS/ES Framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Error returns by a CommandExecutor
#[derive(serde::Serialize, Debug)]
pub enum CommandExecutorError {
    Any,
}
impl std::convert::From<actix::MailboxError> for CommandExecutorError {
    fn from(_: actix::MailboxError) -> Self {
        Self::Any
    }
}

/// Error returns by a failling EventApplier
#[derive(Debug)]
pub enum ApplyError {
    Any,
}