icydb-core 0.217.3

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
mod cache;
#[cfg(any(test, feature = "query"))]
mod direct;
mod primary_key;
mod structural_slot_reader;

#[cfg(any(test, feature = "query"))]
pub(in crate::db) use direct::{
    decode_dense_raw_row_with_contract, decode_sparse_indexed_raw_row_with_contract,
    decode_sparse_required_slot_with_contract,
};
pub(in crate::db) use structural_slot_reader::StructuralSlotReader;