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 the column chunks with the given leaf column indexAuto Trait Implementations§
impl<T> Freeze for ReaderRowGroups<T>
impl<T> RefUnwindSafe for ReaderRowGroups<T>where
T: RefUnwindSafe,
impl<T> Send for ReaderRowGroups<T>
impl<T> Sync for ReaderRowGroups<T>
impl<T> Unpin for ReaderRowGroups<T>
impl<T> UnwindSafe for ReaderRowGroups<T>where
T: RefUnwindSafe,
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