icydb-core 0.144.13

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: db::registry
//! Responsibility: thread-local store registry lifecycle and lookup boundary.
//! Does not own: store encode/decode semantics or query/executor planning behavior.
//! Boundary: manages registry state for named data/index stores and typed registry errors.

mod error;
mod handle;
mod readers;
mod registry;
#[cfg(test)]
mod tests;

pub(crate) use error::StoreRegistryError;
pub(crate) use handle::StoreHandle;
pub use registry::StoreRegistry;