[][src]Struct parquet::decoding::DeltaByteArrayDecoder

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

Delta byte array decoder. Prefix lengths are encoded using DELTA_BINARY_PACKED encoding, Suffixes are stored using DELTA_LENGTH_BYTE_ARRAY encoding. See DeltaByteArrayEncoder for more information.

Methods

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

pub fn new() -> Self
[src]

Creates new delta byte array decoder.

Trait Implementations

impl<'m, T: DataType> Decoder<T> for DeltaByteArrayDecoder<T>
[src]

impl Decoder<ByteArrayType> for DeltaByteArrayDecoder<ByteArrayType>
[src]

fn values_left(&self) -> usize
[src]

Returns the number of values left in this decoder stream.

fn encoding(&self) -> Encoding
[src]

Returns the encoding for this decoder.

impl Decoder<FixedLenByteArrayType> for DeltaByteArrayDecoder<FixedLenByteArrayType>
[src]

fn values_left(&self) -> usize
[src]

Returns the number of values left in this decoder stream.

fn encoding(&self) -> Encoding
[src]

Returns the encoding for this decoder.

Auto Trait Implementations

impl<T> !Send for DeltaByteArrayDecoder<T>

impl<T> !Sync for DeltaByteArrayDecoder<T>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err