icydb-core 0.67.4

IcyDB — A type-safe, embedded ORM and schema system for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module: db::query::api
//! Responsibility: module-local ownership and contracts for db::query::api.
//! Does not own: cross-module orchestration outside this module.
//! Boundary: exposes this module API while keeping implementation details internal.

//! Query API helpers that live at the query/session boundary.
//! Boundary rule: cardinality semantics belong here, not on transport DTOs
//! from `db::response`.

mod private;
mod result_ext;

pub use result_ext::ResponseCardinalityExt;