usebloom::Bloom;/// Group of blooms that are in the same index.
#[derive(Clone)]pubstructBloomGroup{pubblooms:Vec<Bloom>,
}implBloomGroup{pubfnnew(size:usize)->Self{let blooms =(0..size).into_iter().map(|_|Bloom::default()).collect();
BloomGroup {
blooms: blooms
}}}