Enum polars_io::parquet::ParallelStrategy
source · pub enum ParallelStrategy {
None,
Columns,
RowGroups,
Auto,
}
Available on crate feature
parquet
only.Variants§
None
Don’t parallelize
Columns
Parallelize over the row groups
RowGroups
Parallelize over the columns
Auto
Automatically determine over which unit to parallelize This will choose the most occurring unit.
Trait Implementations§
source§impl Clone for ParallelStrategy
impl Clone for ParallelStrategy
source§fn clone(&self) -> ParallelStrategy
fn clone(&self) -> ParallelStrategy
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 ParallelStrategy
impl Debug for ParallelStrategy
source§impl Default for ParallelStrategy
impl Default for ParallelStrategy
source§impl PartialEq<ParallelStrategy> for ParallelStrategy
impl PartialEq<ParallelStrategy> for ParallelStrategy
source§fn eq(&self, other: &ParallelStrategy) -> bool
fn eq(&self, other: &ParallelStrategy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ParallelStrategy
impl Eq for ParallelStrategy
impl StructuralEq for ParallelStrategy
impl StructuralPartialEq for ParallelStrategy
Auto Trait Implementations§
impl RefUnwindSafe for ParallelStrategy
impl Send for ParallelStrategy
impl Sync for ParallelStrategy
impl Unpin for ParallelStrategy
impl UnwindSafe for ParallelStrategy
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.