kmp-domain 0.18.3

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
#[derive(Debug)]
pub(super) struct TracePathState {
    pub node: String,
    pub preferred_nodes: u32,
    pub adjacency_offset: usize,
    pub expansion_started: bool,
    pub depth: u32,
    pub parent: Option<usize>,
    pub edge: Option<usize>,
}