Enum polars_plan::prelude::ApplyOptions
source · pub enum ApplyOptions {
ApplyGroups,
ApplyList,
ApplyFlat,
}
Variants§
ApplyGroups
Collect groups to a list and apply the function over the groups. This can be important in aggregation context.
ApplyList
ApplyFlat
Trait Implementations§
source§impl Clone for ApplyOptions
impl Clone for ApplyOptions
source§fn clone(&self) -> ApplyOptions
fn clone(&self) -> ApplyOptions
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 ApplyOptions
impl Debug for ApplyOptions
source§impl PartialEq<ApplyOptions> for ApplyOptions
impl PartialEq<ApplyOptions> for ApplyOptions
source§fn eq(&self, other: &ApplyOptions) -> bool
fn eq(&self, other: &ApplyOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ApplyOptions
impl Eq for ApplyOptions
impl StructuralEq for ApplyOptions
impl StructuralPartialEq for ApplyOptions
Auto Trait Implementations§
impl RefUnwindSafe for ApplyOptions
impl Send for ApplyOptions
impl Sync for ApplyOptions
impl Unpin for ApplyOptions
impl UnwindSafe for ApplyOptions
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.