[][src]Struct parquet::encoding::DeltaByteArrayEncoder

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

Encoding for byte arrays, prefix lengths are encoded using DELTA_BINARY_PACKED encoding, followed by suffixes with DELTA_LENGTH_BYTE_ARRAY encoding.

Implementations

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

pub fn new() -> Self[src]

Creates new delta byte array encoder.

Trait Implementations

impl Encoder<ByteArrayType> for DeltaByteArrayEncoder<ByteArrayType>[src]

impl Encoder<FixedLenByteArrayType> for DeltaByteArrayEncoder<FixedLenByteArrayType>[src]

impl<T: DataType> Encoder<T> for DeltaByteArrayEncoder<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for DeltaByteArrayEncoder<T>

impl<T> !Send for DeltaByteArrayEncoder<T>

impl<T> !Sync for DeltaByteArrayEncoder<T>

impl<T> Unpin for DeltaByteArrayEncoder<T> where
    T: Unpin

impl<T> !UnwindSafe for DeltaByteArrayEncoder<T>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]