kmp-adapter-embedded 0.18.3

Embedded SQLite storage adapters for every KMP persistence port
Documentation
1
2
3
4
5
6
7
8
/// A link's storage keys and projected endpoint records. A missing record
/// stays absent; a JSON field missing from an existing record stays null.
pub(crate) struct LinkedJsonRow {
    pub source: String,
    pub target: String,
    pub source_json: Option<Vec<u8>>,
    pub target_json: Option<Vec<u8>>,
}