pub struct SortOperation;Trait Implementations§
Source§impl Clone for SortOperation
impl Clone for SortOperation
Source§fn clone(&self) -> SortOperation
fn clone(&self) -> SortOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Explain for SortOperation
impl Explain for SortOperation
fn describe<'__explain>( &'__explain self, formatter: &mut ExplainFormatter<'__explain, '_>, ) -> Result
Source§impl<V, O> LaneKernel<Bare<V>, Multiple<O>> for SortOperationwhere
V: ValueOrdering + BareValueDomain,
O: OrderState,
for<'a> V::Value<'a>: EnsureSortable,
V::Owned: Debug + Display + Send + Sync,
impl<V, O> LaneKernel<Bare<V>, Multiple<O>> for SortOperationwhere
V: ValueOrdering + BareValueDomain,
O: OrderState,
for<'a> V::Value<'a>: EnsureSortable,
V::Owned: Debug + Display + Send + Sync,
type Output = OperandHandle<Bare<V>, Multiple<Ordered>>
fn execute<'a>( _graphrecord: &'a GraphRecord, values: BareStream<'a, V, Multiple<O>>, _prepared: Self::Prepared<'a>, ) -> QueryResult<<Self::Output as EvaluateOperand>::ReturnValue<'a>>
fn estimate(&self, input: Estimate, _stats: &Stats<'_>) -> Estimate
Source§impl<I, V, O> LaneKernel<Indexed<I, V>, Multiple<O>> for SortOperationwhere
I: IndexDomain,
V: ValueOrdering,
O: OrderState,
for<'a> I::Index<'a>: EnsureSortable,
for<'a> V::Value<'a>: EnsureSortable,
V::Owned: Debug + Display + Send + Sync,
impl<I, V, O> LaneKernel<Indexed<I, V>, Multiple<O>> for SortOperationwhere
I: IndexDomain,
V: ValueOrdering,
O: OrderState,
for<'a> I::Index<'a>: EnsureSortable,
for<'a> V::Value<'a>: EnsureSortable,
V::Owned: Debug + Display + Send + Sync,
type Output = OperandHandle<Indexed<I, V>, Multiple<Ordered>>
fn execute<'a>( _graphrecord: &'a GraphRecord, values: KeyedStream<'a, I, V, Multiple<O>>, _prepared: Self::Prepared<'a>, ) -> QueryResult<<Self::Output as EvaluateOperand>::ReturnValue<'a>>
fn estimate(&self, input: Estimate, _stats: &Stats<'_>) -> Estimate
Source§impl Operation for SortOperation
impl Operation for SortOperation
Source§impl OperationInputs for SortOperation
impl OperationInputs for SortOperation
type Inputs<'__inputs, __Primary: '__inputs> = (&'__inputs __Primary,)
fn inputs<'__inputs, __Primary: '__inputs>( &'__inputs self, primary: &'__inputs __Primary, ) -> Self::Inputs<'__inputs, __Primary>
Source§impl OptimizerHints for SortOperation
impl OptimizerHints for SortOperation
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Source§impl PlanIdentity for SortOperation
impl PlanIdentity for SortOperation
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<__Hasher: Hasher>(&self, state: &mut __Hasher)
Source§impl PlanInputs for SortOperation
impl PlanInputs for SortOperation
Source§impl Prepare for SortOperation
impl Prepare for SortOperation
type Prepared<'a> = ()
fn prepare<'a>( &'a self, _graphrecord: &'a GraphRecord, _cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Auto Trait Implementations§
impl Freeze for SortOperation
impl RefUnwindSafe for SortOperation
impl Send for SortOperation
impl Sync for SortOperation
impl Unpin for SortOperation
impl UnsafeUnpin for SortOperation
impl UnwindSafe for SortOperation
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S, T> ExpandTo<T> for S
impl<S, T> ExpandTo<T> for S
type ReturnOperand = <T as Apply<ExpandToOperation<S>>>::Output
fn expand_to(&self, template: &T) -> <S as ExpandTo<T>>::ReturnOperand
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more