pub enum Component {
Show 17 variants
Noop,
TwosComplementToSignMagnitude {
size: ElemSize,
},
TwosComplementToNegaBinary {
size: ElemSize,
},
DebiasedExponentFractionSign {
size: FloatSize,
},
DebiasedExponentSignFraction {
size: FloatSize,
},
BitShuffle {
size: ElemSize,
},
Tuple {
size: TupleSize,
},
Delta {
size: ElemSize,
},
DeltaAsSignMagnitude {
size: ElemSize,
},
DeltaAsNegaBinary {
size: ElemSize,
},
Clog {
size: ElemSize,
},
HClog {
size: ElemSize,
},
Rare {
size: ElemSize,
},
Raze {
size: ElemSize,
},
RunLengthEncoding {
size: ElemSize,
},
RepetitionRunBitmapEncoding {
size: ElemSize,
},
ZeroRunBitmapEncoding {
size: ElemSize,
},
}Expand description
LC component
Variants§
Noop
TwosComplementToSignMagnitude
TwosComplementToNegaBinary
DebiasedExponentFractionSign
DebiasedExponentSignFraction
BitShuffle
Tuple
Delta
DeltaAsSignMagnitude
DeltaAsNegaBinary
Clog
HClog
Rare
Raze
RunLengthEncoding
RepetitionRunBitmapEncoding
ZeroRunBitmapEncoding
Trait Implementations§
Source§impl Ord for Component
impl Ord for Component
Source§impl PartialOrd for Component
impl PartialOrd for Component
impl Copy for Component
impl Eq for Component
impl StructuralPartialEq for Component
Auto Trait Implementations§
impl Freeze for Component
impl RefUnwindSafe for Component
impl Send for Component
impl Sync for Component
impl Unpin for Component
impl UnsafeUnpin for Component
impl UnwindSafe for Component
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