kmp-domain 0.14.0

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
10
/// A relation one about declared between two of its own entries, as
/// `relate` reads it: enough to find the two facts and to carry the why.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct DeclaredEdge {
    pub from: String,
    pub to: String,
    pub rel: String,
    pub why: String,
    pub evidence: String,
}