nitinol-resolver 0.1.0

Library for Nitinol to abstract how to process Events to Entity
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, thiserror::Error)]
pub enum ResolveError {
    #[error(transparent)]
    Deserialize(#[from] nitinol_core::errors::DeserializeError),

    #[error("An error occurred while applying the event. {trace}")]
    InProcess { trace: String },
}