pub enum LogicalEncoding {
None,
Delta,
DeltaRle(RleMeta),
ComponentwiseDelta,
Rle(RleMeta),
Morton(MortonMeta),
MortonDelta(MortonMeta),
MortonRle(MortonMeta),
PseudoDecimal,
}Expand description
How should the stream be interpreted at the logical level (second pass of decoding)
Variants§
None
Delta
DeltaRle(RleMeta)
ComponentwiseDelta
Rle(RleMeta)
Morton(MortonMeta)
MortonDelta(MortonMeta)
MortonRle(MortonMeta)
PseudoDecimal
Trait Implementations§
Source§impl Clone for LogicalEncoding
impl Clone for LogicalEncoding
Source§fn clone(&self) -> LogicalEncoding
fn clone(&self) -> LogicalEncoding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogicalEncoding
impl Debug for LogicalEncoding
Source§impl PartialEq for LogicalEncoding
impl PartialEq for LogicalEncoding
impl Copy for LogicalEncoding
impl StructuralPartialEq for LogicalEncoding
Auto Trait Implementations§
impl Freeze for LogicalEncoding
impl RefUnwindSafe for LogicalEncoding
impl Send for LogicalEncoding
impl Sync for LogicalEncoding
impl Unpin for LogicalEncoding
impl UnsafeUnpin for LogicalEncoding
impl UnwindSafe for LogicalEncoding
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