Struct arrow_schema::SortOptions
source · pub struct SortOptions {
pub descending: bool,
pub nulls_first: bool,
}Expand description
Options that define the sort order of a given column
Fields§
§descending: boolWhether to sort in descending order
nulls_first: boolWhether to sort nulls first
Trait Implementations§
source§impl Clone for SortOptions
impl Clone for SortOptions
source§fn clone(&self) -> SortOptions
fn clone(&self) -> SortOptions
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 SortOptions
impl Debug for SortOptions
source§impl Default for SortOptions
impl Default for SortOptions
source§impl Hash for SortOptions
impl Hash for SortOptions
source§impl Not for SortOptions
impl Not for SortOptions
! operator is overloaded for SortOptions to invert boolean
fields of the struct.
§type Output = SortOptions
type Output = SortOptions
The resulting type after applying the
! operator.source§fn not(self) -> SortOptions
fn not(self) -> SortOptions
Performs the unary
! operation. Read moresource§impl Ord for SortOptions
impl Ord for SortOptions
source§fn cmp(&self, other: &SortOptions) -> Ordering
fn cmp(&self, other: &SortOptions) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SortOptions
impl PartialEq for SortOptions
source§fn eq(&self, other: &SortOptions) -> bool
fn eq(&self, other: &SortOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for SortOptions
impl PartialOrd for SortOptions
source§fn partial_cmp(&self, other: &SortOptions) -> Option<Ordering>
fn partial_cmp(&self, other: &SortOptions) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for SortOptions
impl Eq for SortOptions
impl StructuralPartialEq for SortOptions
Auto Trait Implementations§
impl Freeze for SortOptions
impl RefUnwindSafe for SortOptions
impl Send for SortOptions
impl Sync for SortOptions
impl Unpin for SortOptions
impl UnwindSafe for SortOptions
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