kmp-application 0.18.3

Application services behind KMP's ten memory moves and evidence-backed recall
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use kmp_domain::GraphReadRevision;

use super::VisualProjectionQuery;

/// The complete request, without lossy hashing or normalized-away inputs.
/// The port revision certifies all graph, body and about-index reads and
/// distinguishes stores and reader incarnations.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(super) struct VisualProjectionIdentity {
    pub(super) revision: GraphReadRevision,
    pub(super) query: VisualProjectionQuery,
}