Struct parquet::file::page_index::offset_index::OffsetIndexMetaData
source · pub struct OffsetIndexMetaData {
pub page_locations: Vec<PageLocation>,
pub unencoded_byte_array_data_bytes: Option<Vec<i64>>,
}
Expand description
OffsetIndex
information for a column chunk. Contains offsets and sizes for each page
in the chunk. Optionally stores fully decoded page sizes for BYTE_ARRAY columns.
Fields§
§page_locations: Vec<PageLocation>
Vector of PageLocation
objects, one per page in the chunk.
unencoded_byte_array_data_bytes: Option<Vec<i64>>
Optional vector of unencoded page sizes, one per page in the chunk. Only defined for BYTE_ARRAY columns.
Implementations§
source§impl OffsetIndexMetaData
impl OffsetIndexMetaData
sourcepub fn page_locations(&self) -> &Vec<PageLocation>
pub fn page_locations(&self) -> &Vec<PageLocation>
Vector of PageLocation
objects, one per page in the chunk.
sourcepub fn unencoded_byte_array_data_bytes(&self) -> Option<&Vec<i64>>
pub fn unencoded_byte_array_data_bytes(&self) -> Option<&Vec<i64>>
Optional vector of unencoded page sizes, one per page in the chunk. Only defined for BYTE_ARRAY columns.
Trait Implementations§
source§impl Clone for OffsetIndexMetaData
impl Clone for OffsetIndexMetaData
source§fn clone(&self) -> OffsetIndexMetaData
fn clone(&self) -> OffsetIndexMetaData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OffsetIndexMetaData
impl Debug for OffsetIndexMetaData
source§impl PartialEq for OffsetIndexMetaData
impl PartialEq for OffsetIndexMetaData
impl StructuralPartialEq for OffsetIndexMetaData
Auto Trait Implementations§
impl Freeze for OffsetIndexMetaData
impl RefUnwindSafe for OffsetIndexMetaData
impl Send for OffsetIndexMetaData
impl Sync for OffsetIndexMetaData
impl Unpin for OffsetIndexMetaData
impl UnwindSafe for OffsetIndexMetaData
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)