canic-core 0.99.5

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module: cdk::structures
//!
//! Responsibility: re-export stable-structure types used by Canic storage code.
//! Does not own: schema definitions, memory allocation policy, or migrations.
//! Boundary: keeps external stable-structure imports inside Canic's runtime substrate.

pub mod memory {
    pub use ic_stable_structures::memory_manager::*;
}

pub use ic_stable_structures::{
    BTreeMap, DefaultMemoryImpl, Memory, StableVec, Storable, Vec, VectorMemory, btreemap, cell,
    storable,
};