File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
parquet/src/arrow/async_reader Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ use std::future::Future;
2828use std:: ops:: Range ;
2929
3030/// A data source that can be used with [`MetadataLoader`] to load [`ParquetMetaData`]
31- pub ( crate ) trait MetadataFetch {
31+ pub trait MetadataFetch {
3232 fn fetch ( & mut self , range : Range < usize > ) -> BoxFuture < ' _ , Result < Bytes > > ;
3333}
3434
@@ -39,9 +39,7 @@ impl<'a, T: AsyncFileReader> MetadataFetch for &'a mut T {
3939}
4040
4141/// An asynchronous interface to load [`ParquetMetaData`] from an async source
42- ///
43- /// Crate-private until stabilised
44- pub ( crate ) struct MetadataLoader < F > {
42+ pub struct MetadataLoader < F > {
4543 /// Function that fetches byte ranges asynchronously
4644 fetch : F ,
4745 /// The in-progress metadata
You can’t perform that action at this time.
0 commit comments