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
sourceimpl Clone for ApplyOptions
impl Clone for ApplyOptions
sourcefn clone(&self) -> ApplyOptions
fn clone(&self) -> ApplyOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ApplyOptions
impl Debug for ApplyOptions
sourceimpl<'de> Deserialize<'de> for ApplyOptions
impl<'de> Deserialize<'de> for ApplyOptions
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ApplyOptions> for ApplyOptions
impl PartialEq<ApplyOptions> for ApplyOptions
sourcefn eq(&self, other: &ApplyOptions) -> bool
fn eq(&self, other: &ApplyOptions) -> bool
sourceimpl Serialize for ApplyOptions
impl Serialize for ApplyOptions
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.