pub(crate) enum EncodingArgs {
Plain,
PlainDictionary,
Rle,
BitPacked,
DeltaBinaryPacked,
DeltaLengthByteArray,
DeltaByteArray,
RleDictionary,
ByteStreamSplit,
}
Variants§
Plain
Default byte encoding.
PlainDictionary
Deprecated dictionary encoding.
Rle
Group packed run length encoding.
BitPacked
Deprecated Bit-packed encoding.
DeltaBinaryPacked
Delta encoding for integers, either INT32 or INT64.
DeltaLengthByteArray
Encoding for byte arrays to separate the length values and the data.
DeltaByteArray
Incremental encoding for byte arrays.
RleDictionary
Dictionary encoding.
ByteStreamSplit
Encoding for fixed-width data.
Trait Implementations§
Source§impl Clone for EncodingArgs
impl Clone for EncodingArgs
Source§fn clone(&self) -> EncodingArgs
fn clone(&self) -> EncodingArgs
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 EncodingArgs
impl Debug for EncodingArgs
Source§impl From<EncodingArgs> for Encoding
impl From<EncodingArgs> for Encoding
Source§fn from(value: EncodingArgs) -> Self
fn from(value: EncodingArgs) -> Self
Converts to this type from the input type.
Source§impl Ord for EncodingArgs
impl Ord for EncodingArgs
Source§fn cmp(&self, other: &EncodingArgs) -> Ordering
fn cmp(&self, other: &EncodingArgs) -> 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 EncodingArgs
impl PartialEq for EncodingArgs
Source§impl PartialOrd for EncodingArgs
impl PartialOrd for EncodingArgs
Source§impl ValueEnum for EncodingArgs
impl ValueEnum for EncodingArgs
impl Copy for EncodingArgs
impl Eq for EncodingArgs
impl StructuralPartialEq for EncodingArgs
Auto Trait Implementations§
impl Freeze for EncodingArgs
impl RefUnwindSafe for EncodingArgs
impl Send for EncodingArgs
impl Sync for EncodingArgs
impl Unpin for EncodingArgs
impl UnwindSafe for EncodingArgs
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> 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
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