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,
},
ChunkedLeadingZeroBitElimination {
size: ElemSize,
},
HybridChunkedLeadingZeroBitElimination {
size: ElemSize,
},
RepeatedAdaptiveRedundancyElimination {
size: ElemSize,
},
RepeatedAdaptiveZeroElimination {
size: ElemSize,
},
RunLengthEncoding {
size: ElemSize,
},
RepeatedRedundancyElimination {
size: ElemSize,
},
RepeatedZeroElimination {
size: ElemSize,
},
}Expand description
LC component
Variants§
Noop
TwosComplementToSignMagnitude
TwosComplementToNegaBinary
DebiasedExponentFractionSign
DebiasedExponentSignFraction
BitShuffle
Tuple
Delta
DeltaAsSignMagnitude
DeltaAsNegaBinary
ChunkedLeadingZeroBitElimination
HybridChunkedLeadingZeroBitElimination
RepeatedAdaptiveRedundancyElimination
RepeatedAdaptiveZeroElimination
RunLengthEncoding
RepeatedRedundancyElimination
RepeatedZeroElimination
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