Struct parquet_format_safe::Encoding
source · [−]pub struct Encoding(pub i32);
Expand description
Encodings supported by Parquet. Not all encodings are valid for all types. These enums are also used to specify the encoding of definition and repetition levels. See the accompanying doc for the details of the more complicated encodings.
Tuple Fields
0: i32
Implementations
sourceimpl Encoding
impl Encoding
sourcepub const PLAIN: Encoding = _
pub const PLAIN: Encoding = _
Default encoding. BOOLEAN - 1 bit per value. 0 is false; 1 is true. INT32 - 4 bytes per value. Stored as little-endian. INT64 - 8 bytes per value. Stored as little-endian. FLOAT - 4 bytes per value. IEEE. Stored as little-endian. DOUBLE - 8 bytes per value. IEEE. Stored as little-endian. BYTE_ARRAY - 4 byte length stored as little endian, followed by bytes. FIXED_LEN_BYTE_ARRAY - Just the bytes.
sourcepub const PLAIN_DICTIONARY: Encoding = _
pub const PLAIN_DICTIONARY: Encoding = _
Deprecated: Dictionary encoding. The values in the dictionary are encoded in the plain type. in a data page use RLE_DICTIONARY instead. in a Dictionary page use PLAIN instead
sourcepub const RLE: Encoding = _
pub const RLE: Encoding = _
Group packed run length encoding. Usable for definition/repetition levels encoding and Booleans (on one bit: 0 is false; 1 is true.)
sourcepub const BIT_PACKED: Encoding = _
pub const BIT_PACKED: Encoding = _
Bit packed encoding. This can only be used if the data has a known max width. Usable for definition/repetition levels encoding.
sourcepub const DELTA_BINARY_PACKED: Encoding = _
pub const DELTA_BINARY_PACKED: Encoding = _
Delta encoding for integers. This can be used for int columns and works best on sorted data
sourcepub const DELTA_LENGTH_BYTE_ARRAY: Encoding = _
pub const DELTA_LENGTH_BYTE_ARRAY: Encoding = _
Encoding for byte arrays to separate the length values and the data. The lengths are encoded using DELTA_BINARY_PACKED
sourcepub const DELTA_BYTE_ARRAY: Encoding = _
pub const DELTA_BYTE_ARRAY: Encoding = _
Incremental-encoded byte array. Prefix lengths are encoded using DELTA_BINARY_PACKED. Suffixes are stored as delta length byte arrays.
sourcepub const RLE_DICTIONARY: Encoding = _
pub const RLE_DICTIONARY: Encoding = _
Dictionary encoding: the ids are encoded using the RLE encoding
sourcepub const BYTE_STREAM_SPLIT: Encoding = _
pub const BYTE_STREAM_SPLIT: Encoding = _
Encoding for floating-point data. K byte-streams are created where K is the size in bytes of the data type. The individual bytes of an FP value are scattered to the corresponding stream and the streams are concatenated. This itself does not reduce the size of the data but can lead to better compression afterwards.
pub const ENUM_VALUES: &'static [Self] = _
pub fn write_to_out_protocol<T: TOutputProtocol>(
&self,
o_prot: &mut T
) -> Result<usize>
Trait Implementations
sourceimpl Ord for Encoding
impl Ord for Encoding
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Encoding> for Encoding
impl PartialOrd<Encoding> for Encoding
sourcefn partial_cmp(&self, other: &Encoding) -> Option<Ordering>
fn partial_cmp(&self, other: &Encoding) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl ReadThrift for Encoding
impl ReadThrift for Encoding
fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<Encoding>
impl Copy for Encoding
impl Eq for Encoding
impl StructuralEq for Encoding
impl StructuralPartialEq for Encoding
Auto Trait Implementations
impl RefUnwindSafe for Encoding
impl Send for Encoding
impl Sync for Encoding
impl Unpin for Encoding
impl UnwindSafe for Encoding
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more