icydb-core 0.144.10

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
//! Module: session::response
//! Responsibility: session-boundary response finalization helpers.
//! Does not own: public response DTO shape, cursor grammar, or executor runtime behavior.
//! Boundary: converts executor page carriers into public response envelopes.

mod grouped;
mod scalar;

pub(in crate::db) use grouped::finalize_structural_grouped_projection_result;
pub(in crate::db) use grouped::sql_grouped_cursor_from_bytes;
pub(in crate::db) use scalar::finalize_scalar_paged_execution;