[][src]Struct parquet::encoding::PlainEncoder

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

Plain encoding that supports all types. Values are encoded back to back. The plain encoding is used whenever a more efficient encoding can not be used. It stores the data in the following format:

  • BOOLEAN - 1 bit per value, 0 is false; 1 is true.
  • INT32 - 4 bytes per value, stored as little-endian.
  • INT64 - 8 bytes per value, stored as little-endian.
  • FLOAT - 4 bytes per value, stored as IEEE little-endian.
  • DOUBLE - 8 bytes per value, stored as IEEE little-endian.
  • BYTE_ARRAY - 4 byte length stored as little endian, followed by bytes.
  • FIXED_LEN_BYTE_ARRAY - just the bytes are stored.

Implementations

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

pub fn new(
    desc: ColumnDescPtr,
    mem_tracker: MemTrackerPtr,
    vec: Vec<u8>
) -> Self
[src]

Creates new plain encoder.

Trait Implementations

impl Encoder<BoolType> for PlainEncoder<BoolType>[src]

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

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

impl Encoder<Int96Type> for PlainEncoder<Int96Type>[src]

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

impl<T: SliceAsBytesDataType> Encoder<T> for PlainEncoder<T> where
    T::T: SliceAsBytes
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for PlainEncoder<T>

impl<T> !Send for PlainEncoder<T>

impl<T> !Sync for PlainEncoder<T>

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

impl<T> !UnwindSafe for PlainEncoder<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, U> Into<U> for T where
    U: From<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>,