pub enum LcComponent {
Show 17 variants
Noop,
TwosComplementToSignMagnitude {
size: LcElemSize,
},
TwosComplementToNegaBinary {
size: LcElemSize,
},
DebiasedExponentFractionSign {
size: LcFloatSize,
},
DebiasedExponentSignFraction {
size: LcFloatSize,
},
BitShuffle {
size: LcElemSize,
},
Tuple {
size: LcTupleSize,
},
Delta {
size: LcElemSize,
},
DeltaAsSignMagnitude {
size: LcElemSize,
},
DeltaAsNegaBinary {
size: LcElemSize,
},
Clog {
size: LcElemSize,
},
HClog {
size: LcElemSize,
},
Rare {
size: LcElemSize,
},
Raze {
size: LcElemSize,
},
RunLengthEncoding {
size: LcElemSize,
},
RepetitionRunBitmapEncoding {
size: LcElemSize,
},
ZeroRunBitmapEncoding {
size: LcElemSize,
},
}Expand description
LC component
Variants§
Noop
TwosComplementToSignMagnitude
Fields
§
size: LcElemSizeTwosComplementToNegaBinary
Fields
§
size: LcElemSizeDebiasedExponentFractionSign
Fields
§
size: LcFloatSizeDebiasedExponentSignFraction
Fields
§
size: LcFloatSizeBitShuffle
Fields
§
size: LcElemSizeTuple
Fields
§
size: LcTupleSizeDelta
Fields
§
size: LcElemSizeDeltaAsSignMagnitude
Fields
§
size: LcElemSizeDeltaAsNegaBinary
Fields
§
size: LcElemSizeClog
Fields
§
size: LcElemSizeHClog
Fields
§
size: LcElemSizeRare
Fields
§
size: LcElemSizeRaze
Fields
§
size: LcElemSizeRunLengthEncoding
Fields
§
size: LcElemSizeRepetitionRunBitmapEncoding
Fields
§
size: LcElemSizeZeroRunBitmapEncoding
Fields
§
size: LcElemSizeTrait Implementations§
Source§impl Clone for LcComponent
impl Clone for LcComponent
Source§fn clone(&self) -> LcComponent
fn clone(&self) -> LcComponent
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 LcComponent
impl Debug for LcComponent
Source§impl<'de> Deserialize<'de> for LcComponent
impl<'de> Deserialize<'de> for LcComponent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for LcComponent
impl Hash for LcComponent
Source§impl JsonSchema for LcComponent
impl JsonSchema for LcComponent
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Ord for LcComponent
impl Ord for LcComponent
Source§fn cmp(&self, other: &LcComponent) -> Ordering
fn cmp(&self, other: &LcComponent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LcComponent
impl PartialEq for LcComponent
Source§impl PartialOrd for LcComponent
impl PartialOrd for LcComponent
Source§impl Serialize for LcComponent
impl Serialize for LcComponent
impl Copy for LcComponent
impl Eq for LcComponent
impl StructuralPartialEq for LcComponent
Auto Trait Implementations§
impl Freeze for LcComponent
impl RefUnwindSafe for LcComponent
impl Send for LcComponent
impl Sync for LcComponent
impl Unpin for LcComponent
impl UnsafeUnpin for LcComponent
impl UnwindSafe for LcComponent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more