| Crates.io | shelves |
| lib.rs | shelves |
| version | 1.2.0 |
| created_at | 2022-02-19 15:21:39.796529+00 |
| updated_at | 2023-05-11 18:54:41.404121+00 |
| description | Storing values referenced by a unique typed index. |
| homepage | |
| repository | https://github.com/timothee-haudebourg/shelves |
| max_upload_size | |
| id | 535234 |
| size | 45,388 |
This is a small utility library for storing values of and
reference them using a unique typed index, Ref<T>,
which is a simple typed wrapper around usize.
Any data structure can be used behind the shelf as long as it provides
a way to store and fetch values by usize through the implementation of the Storage trait.
This library provides a Storage implementation for Vec, BTreeMap and HashMap.
In addition, a Storage implementation is provided for the slab::Slab type by enabling
the slab-storage feature.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.