pub enum NumericAggregateKind {
Sum,
Avg,
}Expand description
Phase E-3 numeric aggregate kind. Marks which function the
executor applies when materializing
super::planner::OperatorPlan::AggregateNumeric.
Variants§
Trait Implementations§
Source§impl Clone for NumericAggregateKind
impl Clone for NumericAggregateKind
Source§fn clone(&self) -> NumericAggregateKind
fn clone(&self) -> NumericAggregateKind
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 Debug for NumericAggregateKind
impl Debug for NumericAggregateKind
Source§impl<'de> Deserialize<'de> for NumericAggregateKind
impl<'de> Deserialize<'de> for NumericAggregateKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NumericAggregateKind
impl PartialEq for NumericAggregateKind
Source§fn eq(&self, other: &NumericAggregateKind) -> bool
fn eq(&self, other: &NumericAggregateKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NumericAggregateKind
impl Serialize for NumericAggregateKind
impl Copy for NumericAggregateKind
impl Eq for NumericAggregateKind
impl StructuralPartialEq for NumericAggregateKind
Auto Trait Implementations§
impl Freeze for NumericAggregateKind
impl RefUnwindSafe for NumericAggregateKind
impl Send for NumericAggregateKind
impl Sync for NumericAggregateKind
impl Unpin for NumericAggregateKind
impl UnsafeUnpin for NumericAggregateKind
impl UnwindSafe for NumericAggregateKind
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<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.