Struct parquet::decoding::DeltaLengthByteArrayDecoder[][src]

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

Delta length byte array decoder. Only applied to byte arrays to separate the length values and the data, the lengths are encoded using DELTA_BINARY_PACKED encoding. See DeltaLengthByteArrayEncoder for more information.

Methods

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

Creates new delta length byte array decoder.

Trait Implementations

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

impl Decoder<ByteArrayType> for DeltaLengthByteArrayDecoder<ByteArrayType>
[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