icydb-core 0.75.7

IcyDB — A type-safe, embedded ORM and schema system for the Internet Computer
Documentation
//! Module: query::explain
//! Responsibility: deterministic, read-only projection of logical query plans.
//! Does not own: plan execution or semantic validation.
//! Boundary: diagnostics/explain surface over intent/planner outputs.

mod access_projection;
mod execution;
mod json;
mod nodes;
mod plan;
mod render;
mod writer;

pub(in crate::db) use access_projection::write_access_strategy_label;
pub use execution::*;
pub use plan::*;

///
/// TESTS
///

#[cfg(test)]
mod tests;