pub trait RowGroups {
    // Required methods
    fn num_rows(&self) -> usize;
    fn column_chunks(&self, i: usize) -> Result<Box<dyn PageIterator>>;
}
Expand description

A collection of row groups

Required Methods§

source

fn num_rows(&self) -> usize

Get the number of rows in this collection

source

fn column_chunks(&self, i: usize) -> Result<Box<dyn PageIterator>>

Returns a PageIterator for the column chunks with the given leaf column index

Implementations on Foreign Types§

source§

impl RowGroups for Arc<dyn FileReader>

source§

fn num_rows(&self) -> usize

source§

fn column_chunks(&self, column_index: usize) -> Result<Box<dyn PageIterator>>

Implementors§