stable-structures icon indicating copy to clipboard operation
stable-structures copied to clipboard

A collection of data structures for fearless canister upgrades.

Results 35 stable-structures issues
Sort by recently updated
recently updated
newest added

- [x] romans blog, the crate docs and the examples are not in sync. this is mainly around the fact that `StableBTreeMap` does not require devs to specify a bound...

https://share.descript.com/view/95vMYP6Ky3w - I found it it is size issue, I just delete some data and tried to store something and it was success. - Also two of my static have...

This is a proposal for preferring iterating over Entries rather than `(K, V)` tuples. Entries provide lazy access to values which means that values don't need to be loaded and...

Problem: Stable structures do not support memory freeing. Solution: To free memory, we’d need to add the following API to the memory manager: `fn free(memory: MemoryId) -> (); ` Post...

The current API implementation does not support deref coercion like the standard Rust collections. In some cases, this forces a redundant instantiation only for retrieving data. E.g.: ```rust #[test] fn...

We have something that looks like below. ```rust const MAX_VALUE_SIZE: u32 = 133; #[derive(Serialize, Clone, Deserialize, CandidType, Debug, PartialEq, Eq)] pub struct NeuronInfo { // ... code } impl Storable...