pub enum CompressedPage {
Data(CompressedDataPage),
Dict(CompressedDictPage),
}
This is supported on crate feature
io_parquet
only.Expand description
A CompressedPage
is a compressed, encoded representation of a Parquet page. It holds actual data
and thus cloning it is expensive.
Variants
Data(CompressedDataPage)
Dict(CompressedDictPage)
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CompressedPage
impl Send for CompressedPage
impl Sync for CompressedPage
impl Unpin for CompressedPage
impl !UnwindSafe for CompressedPage
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