pub enum ChunkSize {
M1 = 1_048_576,
M2 = 2_097_152,
M4 = 4_194_304,
M8 = 8_388_608,
M16 = 16_777_216,
M32 = 33_554_432,
}Expand description
BitmapIndex works in chunks, each chunk represent ChunkSize values,
possibily values for ChunkSize are: 1 Mega, 2 Mega, 4 Mega, 8 Mega, 16 Mega, 32 Mega.
If BitmapIndex is created in storage mode, bitmaps are serialized every time a chunk
is full.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChunkSize
impl RefUnwindSafe for ChunkSize
impl Send for ChunkSize
impl Sync for ChunkSize
impl Unpin for ChunkSize
impl UnwindSafe for ChunkSize
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more