icydb-core 0.94.0

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module: db::query
//! Owns the semantic query boundary: intent construction, planning, explain,
//! fluent APIs, and stable query-facing helpers.

pub(crate) mod api;
pub(crate) mod builder;
pub(crate) mod explain;
pub(crate) mod expr;
pub(crate) mod fingerprint;
pub(crate) mod fluent;
pub(crate) mod intent;
pub(crate) mod plan;
pub(crate) mod trace;