```py /// Reader interface for a collection of Parquet files. #[pyclass(module = "arro3.io", frozen)] pub struct ParquetDataset { parquet_meta: ArrowReaderMetadata, files: HashMap<object_store::path::Path, ArrowReaderMetadata>, schema: SchemaRef, store: Arc<dyn ObjectStore>, } ```