kmp-adapter-embedded 0.18.3

Embedded SQLite storage adapters for every KMP persistence port
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::Table;

/// Bounded ordered join of a root-key set, typed links and JSON records.
/// Field paths and the relation kind are values, never SQL fragments.
pub(crate) struct LinkedJsonScan<'a> {
    pub roots: Table,
    pub links: Table,
    pub records: Table,
    pub relation: &'a str,
    pub fields: &'a [&'a str],
    pub after: Option<(&'a str, &'a str)>,
    pub limit: u32,
}