icydb-core 0.223.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
14
15
//! Module: response
//! Responsibility: public structural query response rows.
//! Does not own: execution routing, planning policy, or cursor protocols.
//! Boundary: exposes logical grouped rows without typed persistence carriers.

mod exact_key;
mod grouped;
mod page;
mod rows;

#[doc(hidden)]
pub use exact_key::ExactKeyBatchProjectionOutput;
pub use grouped::{GroupedQueryOutput, GroupedRow};
pub use page::{ExhaustiveQueryPageOutput, LiveQueryPageOutput, ScalarPageWork};
pub use rows::RowProjectionOutput;