kmp-domain 0.18.5

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
12
use crate::TraceCondenseCandidate;

/// Whole-selection recommendations. Counts are disjoint and cover only objects
/// with a stored body and a card presentation for the requested language.
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct TraceCondenseCandidates {
    pub items: Vec<TraceCondenseCandidate>,
    pub omitted_count: u32,
    pub below_floor: u32,
    pub valid: u32,
    pub after_cut: u32,
}