pub enum AggregationFn {
MIN,
MAX,
MEDIAN,
COUNT,
SUM,
AVG,
VARIANCE,
}
Expand description
Permitted aggregation function.
Variants§
Trait Implementations§
Source§impl Clone for AggregationFn
impl Clone for AggregationFn
Source§fn clone(&self) -> AggregationFn
fn clone(&self) -> AggregationFn
Returns a duplicate 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 AggregationFn
impl Debug for AggregationFn
Source§impl<'de> Deserialize<'de> for AggregationFn
impl<'de> Deserialize<'de> for AggregationFn
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 Hash for AggregationFn
impl Hash for AggregationFn
Source§impl Ord for AggregationFn
impl Ord for AggregationFn
Source§fn cmp(&self, other: &AggregationFn) -> Ordering
fn cmp(&self, other: &AggregationFn) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AggregationFn
impl PartialEq for AggregationFn
Source§impl PartialOrd for AggregationFn
impl PartialOrd for AggregationFn
Source§impl Serialize for AggregationFn
impl Serialize for AggregationFn
impl Eq for AggregationFn
impl StructuralPartialEq for AggregationFn
Auto Trait Implementations§
impl Freeze for AggregationFn
impl RefUnwindSafe for AggregationFn
impl Send for AggregationFn
impl Sync for AggregationFn
impl Unpin for AggregationFn
impl UnwindSafe for AggregationFn
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