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
use super::EvidencePathBindings;

/// One candidate per required role. Missing witnesses keep the group for review.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EvidencePathGroup {
    pub candidate_indexes: Vec<u32>,
    pub bindings: EvidencePathBindings,
    pub clock_unknown: bool,
}