struct ReaderRowGroups<T: ChunkReader> {
reader: Arc<T>,
metadata: Arc<ParquetMetaData>,
row_groups: Vec<usize>,
}Fields§
§reader: Arc<T>§metadata: Arc<ParquetMetaData>§row_groups: Vec<usize>Optional list of row group indices to scan
Trait Implementations§
Source§impl<T: ChunkReader + 'static> RowGroups for ReaderRowGroups<T>
impl<T: ChunkReader + 'static> RowGroups for ReaderRowGroups<T>
Source§fn column_chunks(&self, i: usize) -> Result<Box<dyn PageIterator>>
fn column_chunks(&self, i: usize) -> Result<Box<dyn PageIterator>>
Returns a
PageIterator for all pages in the specified column chunk
across all row groups in this collection.Source§fn row_groups(&self) -> Box<dyn Iterator<Item = &RowGroupMetaData> + '_>
fn row_groups(&self) -> Box<dyn Iterator<Item = &RowGroupMetaData> + '_>
Returns an iterator over the row groups in this collection Read more
Source§fn metadata(&self) -> &ParquetMetaData
fn metadata(&self) -> &ParquetMetaData
Returns the parquet metadata
Auto Trait Implementations§
impl<T> Freeze for ReaderRowGroups<T>
impl<T> !RefUnwindSafe for ReaderRowGroups<T>
impl<T> Send for ReaderRowGroups<T>
impl<T> Sync for ReaderRowGroups<T>
impl<T> Unpin for ReaderRowGroups<T>
impl<T> !UnwindSafe for ReaderRowGroups<T>
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