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
sourceimpl Clone for SortArguments
impl Clone for SortArguments
sourcefn clone(&self) -> SortArguments
fn clone(&self) -> SortArguments
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 SortArguments
impl Debug for SortArguments
sourceimpl<'de> Deserialize<'de> for SortArguments
impl<'de> Deserialize<'de> for SortArguments
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<SortArguments> for SortArguments
impl PartialEq<SortArguments> for SortArguments
sourcefn eq(&self, other: &SortArguments) -> bool
fn eq(&self, other: &SortArguments) -> bool
sourceimpl Serialize for SortArguments
impl Serialize for SortArguments
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
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.