pub struct SortingColumn {
pub column_idx: i32,
pub descending: bool,
pub nulls_first: bool,
}Expand description
Sort order within a RowGroup of a leaf column
Fields§
§column_idx: i32The ordinal position of the column (in this row group)
descending: boolIf true, indicates this column is sorted in descending order.
nulls_first: boolIf true, nulls will come before non-null values, otherwise, nulls go at the end. */
Trait Implementations§
Source§impl Clone for SortingColumn
impl Clone for SortingColumn
Source§fn clone(&self) -> SortingColumn
fn clone(&self) -> SortingColumn
Returns a duplicate 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 SortingColumn
impl Debug for SortingColumn
Source§impl PartialEq for SortingColumn
impl PartialEq for SortingColumn
impl Eq for SortingColumn
impl StructuralPartialEq for SortingColumn
Auto Trait Implementations§
impl Freeze for SortingColumn
impl RefUnwindSafe for SortingColumn
impl Send for SortingColumn
impl Sync for SortingColumn
impl Unpin for SortingColumn
impl UnwindSafe for SortingColumn
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