pub struct ColumnOffsetsMetadata {
pub dictionary_page_offset: Option<i64>,
pub data_page_offset: Option<i64>,
}
Fields§
§dictionary_page_offset: Option<i64>
§data_page_offset: Option<i64>
Implementations§
Source§impl ColumnOffsetsMetadata
impl ColumnOffsetsMetadata
pub fn from_column_chunk(column_chunk: &ColumnChunk) -> ColumnOffsetsMetadata
pub fn from_column_chunk_metadata( column_chunk_metadata: &ColumnChunkMetadata, ) -> ColumnOffsetsMetadata
pub fn calc_row_group_file_offset(&self) -> Option<i64>
Auto Trait Implementations§
impl Freeze for ColumnOffsetsMetadata
impl RefUnwindSafe for ColumnOffsetsMetadata
impl Send for ColumnOffsetsMetadata
impl Sync for ColumnOffsetsMetadata
impl Unpin for ColumnOffsetsMetadata
impl UnwindSafe for ColumnOffsetsMetadata
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> 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