pub enum EncodedPage {
Data(DataPage),
Dict(EncodedDictPage),
}
This is supported on crate feature
io_parquet
only.Expand description
A EncodedPage
is an uncompressed, encoded representation of a Parquet page. It may hold actual data
and thus cloning it may be expensive.
Variants
Data(DataPage)
Dict(EncodedDictPage)
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for EncodedPage
impl Send for EncodedPage
impl Sync for EncodedPage
impl Unpin for EncodedPage
impl !UnwindSafe for EncodedPage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more