atlas-bucket-map 3.0.0

atlas-bucket-map
Documentation
1
2
3
4
5
6
7
8
use {crate::RefCount, atlas_pubkey::Pubkey};

#[derive(Debug, Default, Clone)]
pub struct BucketItem<T> {
    pub pubkey: Pubkey,
    pub ref_count: RefCount,
    pub slot_list: Vec<T>,
}