pub(crate) struct ColumnChunk {
pub(crate) path: String,
pub(crate) has_offset_index: bool,
pub(crate) has_column_index: bool,
pub(crate) has_bloom_filter: bool,
pub(crate) offset_index: Option<Index>,
pub(crate) column_index: Option<Index>,
pub(crate) bloom_filter: Option<Index>,
pub(crate) pages: Vec<Page>,
}Fields§
§path: String§has_offset_index: bool§has_column_index: bool§has_bloom_filter: bool§offset_index: Option<Index>§column_index: Option<Index>§bloom_filter: Option<Index>§pages: Vec<Page>Trait Implementations§
Source§impl Debug for ColumnChunk
impl Debug for ColumnChunk
Auto Trait Implementations§
impl Freeze for ColumnChunk
impl RefUnwindSafe for ColumnChunk
impl Send for ColumnChunk
impl Sync for ColumnChunk
impl Unpin for ColumnChunk
impl UnwindSafe for ColumnChunk
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