Enum parquet2::encoding::hybrid_rle::HybridEncoded
source · [−]Variants
Bitpacked(&'a [u8])
A bitpacked slice. The consumer must know its bit-width to unpack it.
Rle(&'a [u8], usize)
A RLE-encoded slice. The first attribute corresponds to the slice (that can be interpreted) the second attribute corresponds to the number of repetitions.
Trait Implementations
sourceimpl<'a> Debug for HybridEncoded<'a>
impl<'a> Debug for HybridEncoded<'a>
sourceimpl<'a> PartialEq<HybridEncoded<'a>> for HybridEncoded<'a>
impl<'a> PartialEq<HybridEncoded<'a>> for HybridEncoded<'a>
sourcefn eq(&self, other: &HybridEncoded<'a>) -> bool
fn eq(&self, other: &HybridEncoded<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HybridEncoded<'a>) -> bool
fn ne(&self, other: &HybridEncoded<'a>) -> bool
This method tests for !=
.
impl<'a> Eq for HybridEncoded<'a>
impl<'a> StructuralEq for HybridEncoded<'a>
impl<'a> StructuralPartialEq for HybridEncoded<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for HybridEncoded<'a>
impl<'a> Send for HybridEncoded<'a>
impl<'a> Sync for HybridEncoded<'a>
impl<'a> Unpin for HybridEncoded<'a>
impl<'a> UnwindSafe for HybridEncoded<'a>
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