Struct polars_plan::prelude::SortArguments
source · pub struct SortArguments {
pub descending: Vec<bool>,
pub nulls_last: bool,
pub slice: Option<(i64, usize)>,
pub maintain_order: bool,
}
Fields§
§descending: Vec<bool>
§nulls_last: bool
§slice: Option<(i64, usize)>
§maintain_order: bool
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 Default for SortArguments
impl Default for SortArguments
source§fn default() -> SortArguments
fn default() -> SortArguments
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SortArguments
impl<'de> Deserialize<'de> for SortArguments
source§fn 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
source§impl PartialEq for SortArguments
impl PartialEq 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 ==
.source§impl Serialize for SortArguments
impl Serialize for SortArguments
impl Eq for SortArguments
impl StructuralPartialEq for SortArguments
Auto Trait Implementations§
impl Freeze for SortArguments
impl RefUnwindSafe for SortArguments
impl Send for SortArguments
impl Sync for SortArguments
impl Unpin for SortArguments
impl UnwindSafe for SortArguments
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.