1 2 3 4 5 6 7 8
use {crate::RefCount, solana_sdk::pubkey::Pubkey}; #[derive(Debug, Default, Clone)] pub struct BucketItem<T> { pub pubkey: Pubkey, pub ref_count: RefCount, pub slot_list: Vec<T>, }