solana_bucket_map/
lib.rs

1#![cfg_attr(
2    not(feature = "agave-unstable-api"),
3    deprecated(
4        since = "3.1.0",
5        note = "This crate has been marked for formal inclusion in the Agave Unstable API. From \
6                v4.0.0 onward, the `agave-unstable-api` crate feature must be specified to \
7                acknowledge use of an interface that may break without warning."
8    )
9)]
10#![allow(clippy::arithmetic_side_effects)]
11mod bucket;
12pub mod bucket_api;
13mod bucket_item;
14pub mod bucket_map;
15mod bucket_stats;
16mod bucket_storage;
17mod index_entry;
18mod restart;
19pub type MaxSearch = u8;
20pub type RefCount = u64;