[][src]Struct parquet::file::properties::WriterProperties

pub struct WriterProperties { /* fields omitted */ }

Writer properties.

It is created as an immutable data structure, use WriterPropertiesBuilder to assemble the properties.

Methods

impl WriterProperties
[src]

Returns builder for writer properties with default values.

Returns data page size limit.

Returns dictionary page size limit.

Returns configured batch size for writes.

When writing a batch of data, this setting allows to split it internally into smaller batches so we can better estimate the size of a page currently being written.

Returns max size for a row group.

Returns configured writer version.

Returns created_by string.

Returns encoding for a data page, when dictionary encoding is enabled. This is not configurable.

Returns encoding for dictionary page, when dictionary encoding is enabled. This is not configurable.

Returns encoding for a column, if set. In case when dictionary is enabled, returns fallback encoding.

If encoding is not set, then column writer will choose the best encoding based on the column type.

Returns compression codec for a column.

Returns true if dictionary encoding is enabled for a column.

Returns true if statistics are enabled for a column.

Returns max size for statistics. Only applicable if statistics are enabled.

Trait Implementations

impl Clone for WriterProperties
[src]

Performs copy-assignment from source. Read more

impl Debug for WriterProperties
[src]

Auto Trait Implementations

impl Send for WriterProperties

impl Sync for WriterProperties

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

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

🔬 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> Any for T where
    T: 'static + ?Sized
[src]

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

🔬 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<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

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

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

impl<T> Erased for T

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