icydb-core 0.137.5

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
//! 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_grouped_paged_execution, sql_grouped_cursor_from_bytes};
pub(in crate::db) use scalar::finalize_scalar_paged_execution;