Struct SortColumn
pub struct SortColumn {
pub values: Arc<dyn Array>,
pub options: Option<SortOptions>,
}
Expand description
One column to be used in lexicographical sort
Fields§
§values: Arc<dyn Array>
The column to sort
options: Option<SortOptions>
Sort options for this column
Trait Implementations§
§impl Clone for SortColumn
impl Clone for SortColumn
§fn clone(&self) -> SortColumn
fn clone(&self) -> SortColumn
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 moreAuto Trait Implementations§
impl Freeze for SortColumn
impl !RefUnwindSafe for SortColumn
impl Send for SortColumn
impl Sync for SortColumn
impl Unpin for SortColumn
impl !UnwindSafe for SortColumn
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