made-core 0.8.0

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

use crate::entities::CeremonyIntervention;

/// A seat asked the table for something.
///
/// The whole intervention as it was opened: id, kind, requesting role,
/// target, request content, provenance and timestamps, with no
/// responses yet.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct InterventionRequested {
    pub intervention: CeremonyIntervention,
}