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