Struct q_compress::Flags

source ·
#[non_exhaustive]
pub struct Flags { pub use_5_bit_code_len: bool, pub delta_encoding_order: usize, pub use_min_count_encoding: bool, pub use_gcds: bool, pub use_wrapped_mode: bool, }
Expand description

The configuration stored in a Quantile-compressed header.

During compression, flags are determined based on your CompressorConfig and the q_compress version. Flags affect the encoding of the rest of the file, so decompressing with the wrong flags will likely cause a corruption error.

You will not need to manually instantiate flags; that should be done internally by Compressor::from_config. However, in some circumstances you may want to inspect flags during decompression.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§use_5_bit_code_len: bool

Whether to use 5 bits to encode the length of a prefix Huffman code, as opposed to 4. The first versions of q_compress used 4, which was insufficient for Huffman codes that could reach up to 23 in length (23 >= 16 = 2^4) in spiky distributions with high compression level. In later versions, this flag is always true.

Introduced in 0.5.0.

§delta_encoding_order: usize

How many times delta encoding was applied during compression. This is stored as 3 bits to express 0-7. See CompressorConfig for more details.

Introduced in 0.6.0.

§use_min_count_encoding: bool

Whether to use the minimum number of bits to encode the count of each prefix, rather than using a constant number of bits. This can reduce file size slightly for small data. In later versions, this flag is always true.

Introduced in 0.9.1.

§use_gcds: bool

Whether to enable greatest common divisor multipliers for each prefix. This adds an optional multiplier to each prefix metadata, so that each unsigned number is decoded as x = prefix_lower + offset * gcd. This can improve compression ratio in some cases, e.g. when the numbers are all integer multiples of 100 or all integer-valued floats.

Introduced in 0.10.0.

§use_wrapped_mode: bool

Whether to release control to a wrapping columnar format. This causes q_compress to omit count and compressed size metadata and also break each chuk into finer data pages.

Introduced in 0.11.2.

Trait Implementations§

source§

impl Clone for Flags

source§

fn clone(&self) -> Flags

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Flags

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Flags> for Flags

source§

fn eq(&self, other: &Flags) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Vec<bool, Global>> for Flags

§

type Error = QCompressError

The type returned in the event of a conversion error.
source§

fn try_from(bools: Vec<bool>) -> QCompressResult<Self>

Performs the conversion.
source§

impl TryInto<Vec<bool, Global>> for &Flags

§

type Error = QCompressError

The type returned in the event of a conversion error.
source§

fn try_into(self) -> QCompressResult<Vec<bool>>

Performs the conversion.
source§

impl Eq for Flags

source§

impl StructuralEq for Flags

source§

impl StructuralPartialEq for Flags

Auto Trait Implementations§

§

impl RefUnwindSafe for Flags

§

impl Send for Flags

§

impl Sync for Flags

§

impl Unpin for Flags

§

impl UnwindSafe for Flags

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.