made-core 0.7.7

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

use crate::value_objects::CeremonyReason;

/// A seat said why one thing in this ceremony led to another.
///
/// The reason exactly as the aggregate keeps it: both ends, kind, the
/// why, confidence, who asserted it and when.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ReasonAsserted {
    pub reason: CeremonyReason,
}