kmp-application 0.18.2

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
13
14
15
16
17
use std::collections::BTreeMap;

/// Literal material for a writer to review, never a generated conclusion.
#[derive(Debug, Clone, PartialEq, Eq, serde::Serialize)]
pub struct NeighborhoodItem {
    pub about: String,
    #[serde(rename = "ref")]
    pub reference: String,
    pub state: String,
    pub kind: String,
    pub reason: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    pub text_omitted: bool,
    #[serde(skip_serializing_if = "BTreeMap::is_empty")]
    pub clocks: BTreeMap<String, Vec<String>>,
}