Struct parquet::decoding::RleValueDecoder[][src]

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

RLE/Bit-Packing hybrid decoding for values. Currently is used only for data pages v2 and supports boolean types. See RleValueEncoder for more information.

Methods

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

Trait Implementations

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

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

Returns the number of values left in this decoder stream.

Returns the encoding for this decoder.

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

impl Decoder<BoolType> for RleValueDecoder<BoolType>
[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

Returns the number of values left in this decoder stream.

Returns the encoding for this decoder.

Auto Trait Implementations

impl<T> !Send for RleValueDecoder<T>

impl<T> !Sync for RleValueDecoder<T>