Struct polars_plan::prelude::DistinctOptions
source · pub struct DistinctOptions {
pub subset: Option<Arc<Vec<String>>>,
pub maintain_order: bool,
pub keep_strategy: UniqueKeepStrategy,
}
Fields§
§subset: Option<Arc<Vec<String>>>
§maintain_order: bool
§keep_strategy: UniqueKeepStrategy
Trait Implementations§
source§impl Clone for DistinctOptions
impl Clone for DistinctOptions
source§fn clone(&self) -> DistinctOptions
fn clone(&self) -> DistinctOptions
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 DistinctOptions
impl Debug for DistinctOptions
source§impl PartialEq<DistinctOptions> for DistinctOptions
impl PartialEq<DistinctOptions> for DistinctOptions
source§fn eq(&self, other: &DistinctOptions) -> bool
fn eq(&self, other: &DistinctOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DistinctOptions
impl StructuralEq for DistinctOptions
impl StructuralPartialEq for DistinctOptions
Auto Trait Implementations§
impl RefUnwindSafe for DistinctOptions
impl Send for DistinctOptions
impl Sync for DistinctOptions
impl Unpin for DistinctOptions
impl UnwindSafe for DistinctOptions
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.