Struct polars_plan::prelude::ParquetOptions
source · pub struct ParquetOptions {
pub n_rows: Option<usize>,
pub with_columns: Option<Arc<Vec<String>>>,
pub cache: bool,
pub parallel: ParallelStrategy,
pub rechunk: bool,
pub row_count: Option<RowCount>,
pub file_counter: FileCount,
pub low_memory: bool,
}
Available on crate feature
parquet
only.Fields§
§n_rows: Option<usize>
§with_columns: Option<Arc<Vec<String>>>
§cache: bool
§parallel: ParallelStrategy
§rechunk: bool
§row_count: Option<RowCount>
§file_counter: FileCount
§low_memory: bool
Trait Implementations§
source§impl Clone for ParquetOptions
impl Clone for ParquetOptions
source§fn clone(&self) -> ParquetOptions
fn clone(&self) -> ParquetOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ParquetOptions
impl Debug for ParquetOptions
source§impl PartialEq<ParquetOptions> for ParquetOptions
impl PartialEq<ParquetOptions> for ParquetOptions
source§fn eq(&self, other: &ParquetOptions) -> bool
fn eq(&self, other: &ParquetOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ParquetOptions
impl StructuralEq for ParquetOptions
impl StructuralPartialEq for ParquetOptions
Auto Trait Implementations§
impl RefUnwindSafe for ParquetOptions
impl Send for ParquetOptions
impl Sync for ParquetOptions
impl Unpin for ParquetOptions
impl UnwindSafe for ParquetOptions
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.