Struct parquet::decoding::DeltaBitPackDecoder[][src]

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

Delta binary packed decoder. Supports INT32 and INT64 types. See DeltaBitPackEncoder for more information.

Methods

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

Creates new delta bit packed decoder.

Returns underlying bit reader offset.

Trait Implementations

impl<T: DataType> Decoder<T> for DeltaBitPackDecoder<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

Returns the number of values left in this decoder stream.

Returns the encoding for this decoder.

Auto Trait Implementations

impl<T> !Send for DeltaBitPackDecoder<T>

impl<T> !Sync for DeltaBitPackDecoder<T>