pub enum AggregateOrderSensitivity {
Insensitive,
HardRequirement,
Beneficial,
}
Expand description
Represents the sensitivity of an aggregate expression to ordering.
Variants§
Insensitive
Indicates that the aggregate expression is insensitive to ordering. Ordering at the input is not important for the result of the aggregator.
HardRequirement
Indicates that the aggregate expression has a hard requirement on ordering. The aggregator can not produce a correct result unless its ordering requirement is satisfied.
Beneficial
Indicates that ordering is beneficial for the aggregate expression in terms of evaluation efficiency. The aggregator can produce its result efficiently when its required ordering is satisfied; however, it can still produce the correct result (albeit less efficiently) when its required ordering is not met.
Implementations§
source§impl AggregateOrderSensitivity
impl AggregateOrderSensitivity
pub fn is_insensitive(&self) -> bool
pub fn is_beneficial(&self) -> bool
pub fn hard_requires(&self) -> bool
Trait Implementations§
source§impl Clone for AggregateOrderSensitivity
impl Clone for AggregateOrderSensitivity
source§fn clone(&self) -> AggregateOrderSensitivity
fn clone(&self) -> AggregateOrderSensitivity
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 AggregateOrderSensitivity
impl Debug for AggregateOrderSensitivity
impl Copy for AggregateOrderSensitivity
impl Eq for AggregateOrderSensitivity
impl StructuralPartialEq for AggregateOrderSensitivity
Auto Trait Implementations§
impl Freeze for AggregateOrderSensitivity
impl RefUnwindSafe for AggregateOrderSensitivity
impl Send for AggregateOrderSensitivity
impl Sync for AggregateOrderSensitivity
impl Unpin for AggregateOrderSensitivity
impl UnwindSafe for AggregateOrderSensitivity
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.