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(crate) fn try_new(index: OffsetIndex) -> Result<Self, ParquetError>
pub(crate) fn try_new(index: OffsetIndex) -> Result<Self, ParquetError>
Creates a new OffsetIndexMetaData
from an OffsetIndex
.
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.
pub(crate) fn to_thrift(&self) -> OffsetIndex
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 HeapSize for OffsetIndexMetaData
impl HeapSize 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more