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: bool
Whether to sort in descending order
nulls_first: bool
Whether 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 PartialEq<SortOptions> for SortOptions
impl PartialEq<SortOptions> 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 ==
.