kmp-domain 0.18.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
11
/// Selection over discovered routes; completeness is relative to declared groups.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TraceMaterialResult {
    pub selected_candidates: Vec<u32>,
    pub material_refs: Vec<String>,
    pub covered_groups: Vec<u32>,
    pub incomplete_groups: Vec<u32>,
    pub benefit: u32,
    pub evaluated: u32,
    pub pruned_by_width: u32,
}