[][src]Enum parquet::file::properties::WriterVersion

pub enum WriterVersion {
    PARQUET_1_0,
    PARQUET_2_0,
}

Parquet writer version.

Basic constant, which is not part of the Thrift definition.

Variants

PARQUET_1_0
PARQUET_2_0

Implementations

impl WriterVersion[src]

pub fn as_num(&self) -> i32[src]

Returns writer version as i32.

Trait Implementations

impl Clone for WriterVersion[src]

impl Copy for WriterVersion[src]

impl Debug for WriterVersion[src]

impl PartialEq<WriterVersion> for WriterVersion[src]

impl StructuralPartialEq for WriterVersion[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,