pub struct SortOperator {
pub sort_fields: Vec<SortField>,
pub limit: Option<usize>,
}Fields§
§sort_fields: Vec<SortField>§limit: Option<usize>Support push down limit to sort plan.
Trait Implementations§
source§impl Clone for SortOperator
impl Clone for SortOperator
source§fn clone(&self) -> SortOperator
fn clone(&self) -> SortOperator
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 SortOperator
impl Debug for SortOperator
source§impl Hash for SortOperator
impl Hash for SortOperator
source§impl PartialEq for SortOperator
impl PartialEq for SortOperator
source§fn eq(&self, other: &SortOperator) -> bool
fn eq(&self, other: &SortOperator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for SortOperator
impl StructuralEq for SortOperator
impl StructuralPartialEq for SortOperator
Auto Trait Implementations§
impl RefUnwindSafe for SortOperator
impl Send for SortOperator
impl Sync for SortOperator
impl Unpin for SortOperator
impl UnwindSafe for SortOperator
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.