Struct parquet::decoding::DictDecoder[][src]

pub struct DictDecoder<T: DataType> { /* fields omitted */ }

Dictionary decoder. The dictionary encoding builds a dictionary of values encountered in a given column. The dictionary is be stored in a dictionary page per column chunk. See DictEncoder for more information.

Methods

impl<T: DataType> DictDecoder<T>
[src]

Creates new dictionary decoder.

Decodes and sets values for dictionary using decoder decoder.

Trait Implementations

impl<T: DataType> Decoder<T> for DictDecoder<T>
[src]

Sets the data to decode to be data, which should contain num_values of values to decode. Read more

Consumes values from this decoder and write the results to buffer. This will try to fill up buffer. Read more

Number of values left in this decoder stream

Returns the encoding for this decoder.

Auto Trait Implementations

impl<T> !Send for DictDecoder<T>

impl<T> !Sync for DictDecoder<T>