kmp-domain 0.17.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
use std::collections::BTreeSet;

/// Caller-declared OR of AND sets of known destinations, not a truth assertion.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TraceProofRequirement {
    pub alternatives: Vec<BTreeSet<String>>,
    pub weight: u32,
}