pub struct MetadataLoader<F> {
fetch: F,
metadata: ParquetMetaData,
remainder: Option<(usize, Bytes)>,
}
Expand description
An asynchronous interface to load ParquetMetaData
from an async source
Fields§
§fetch: F
Function that fetches byte ranges asynchronously
metadata: ParquetMetaData
The in-progress metadata
remainder: Option<(usize, Bytes)>
The offset and bytes of remaining unparsed data
Implementations§
Source§impl<F: MetadataFetch> MetadataLoader<F>
impl<F: MetadataFetch> MetadataLoader<F>
Sourcepub async fn load(
fetch: F,
file_size: usize,
prefetch: Option<usize>,
) -> Result<Self>
👎Deprecated since 53.1.0: Use ParquetMetaDataReader
pub async fn load( fetch: F, file_size: usize, prefetch: Option<usize>, ) -> Result<Self>
Create a new MetadataLoader
by reading the footer information
See fetch_parquet_metadata
for the meaning of the individual parameters
Sourcepub fn new(fetch: F, metadata: ParquetMetaData) -> Self
👎Deprecated since 53.1.0: Use ParquetMetaDataReader
pub fn new(fetch: F, metadata: ParquetMetaData) -> Self
Create a new MetadataLoader
from an existing ParquetMetaData
Sourcepub async fn load_page_index(
&mut self,
column_index: bool,
offset_index: bool,
) -> Result<()>
👎Deprecated since 53.1.0: Use ParquetMetaDataReader
pub async fn load_page_index( &mut self, column_index: bool, offset_index: bool, ) -> Result<()>
Loads the page index, if any
column_index
: if true will load column indexoffset_index
: if true will load offset index
Sourcepub fn finish(self) -> ParquetMetaData
pub fn finish(self) -> ParquetMetaData
Returns the finished ParquetMetaData
Auto Trait Implementations§
impl<F> !Freeze for MetadataLoader<F>
impl<F> RefUnwindSafe for MetadataLoader<F>where
F: RefUnwindSafe,
impl<F> Send for MetadataLoader<F>where
F: Send,
impl<F> Sync for MetadataLoader<F>where
F: Sync,
impl<F> Unpin for MetadataLoader<F>where
F: Unpin,
impl<F> UnwindSafe for MetadataLoader<F>where
F: UnwindSafe,
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