pub struct ColumnMetaData {
Show 14 fields pub type_: Type, pub encodings: Vec<Encoding>, pub path_in_schema: Vec<String>, pub codec: CompressionCodec, pub num_values: i64, pub total_uncompressed_size: i64, pub total_compressed_size: i64, pub key_value_metadata: Option<Vec<KeyValue>>, pub data_page_offset: i64, pub index_page_offset: Option<i64>, pub dictionary_page_offset: Option<i64>, pub statistics: Option<Statistics>, pub encoding_stats: Option<Vec<PageEncodingStats>>, pub bloom_filter_offset: Option<i64>,
}
Expand description

Description for column metadata

Fields§

§type_: Type

Type of this column *

§encodings: Vec<Encoding>

Set of all encodings used for this column. The purpose is to validate whether we can decode those pages. *

§path_in_schema: Vec<String>

Path in schema *

§codec: CompressionCodec

Compression codec *

§num_values: i64

Number of values in this column *

§total_uncompressed_size: i64

total byte size of all uncompressed pages in this column chunk (including the headers) *

§total_compressed_size: i64

total byte size of all compressed, and potentially encrypted, pages in this column chunk (including the headers) *

§key_value_metadata: Option<Vec<KeyValue>>

Optional key/value metadata *

§data_page_offset: i64

Byte offset from beginning of file to first data page *

§index_page_offset: Option<i64>

Byte offset from beginning of file to root index page *

§dictionary_page_offset: Option<i64>

Byte offset from the beginning of file to first (only) dictionary page *

§statistics: Option<Statistics>

optional statistics for this column chunk

§encoding_stats: Option<Vec<PageEncodingStats>>

Set of all encodings used for pages in this column chunk. This information can be used to determine if all data pages are dictionary encoded for example *

§bloom_filter_offset: Option<i64>

Byte offset from beginning of file to Bloom filter data. *

Implementations§

Trait Implementations§

Available on crate feature async only.
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.