pub type BucketItem = BitmapScanResult<(u64, RoaringBitmap)>;Expand description
A stream of (bucket_id, RoaringBitmap) in the requested bucket order.
Bitmap positions are relative to the bucket (u32 offsets [0, BUCKET_SIZE))
- edge trimming against the requested range happens at the flatten step.
Aliased Type§
pub enum BucketItem {
Ok((u64, RoaringBitmap)),
Err(BitmapScanError),
}Variants§
Ok((u64, RoaringBitmap))
Contains the success value
Err(BitmapScanError)
Contains the error value