kmp-domain 0.18.2

Domain model of the Kernel Memory Protocol: aggregates, value objects, repositories and projections, with no IO
Documentation
1
2
3
4
5
6
7
8
9
use crate::{NodeProjection, TemporalCoordinate};

/// One scoped node and all coordinates found within the batch's shared budget.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct MemoryNodeHeader {
    pub node: NodeProjection,
    pub coordinates: Vec<TemporalCoordinate>,
    pub coordinates_complete: bool,
}