pub enum ClickStackSelectItemAggfn {
Avg,
Count,
Count_distinct,
Last_value,
Max,
Min,
Quantile,
Sum,
Any,
None,
Unknown(String),
}Expand description
Inline enum for ClickStackSelectItem.aggFn.
Variants§
Avg
Count
Count_distinct
Last_value
Max
Min
Quantile
Sum
Any
None
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ClickStackSelectItemAggfn
impl Clone for ClickStackSelectItemAggfn
Source§fn clone(&self) -> ClickStackSelectItemAggfn
fn clone(&self) -> ClickStackSelectItemAggfn
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 ClickStackSelectItemAggfn
impl Debug for ClickStackSelectItemAggfn
Source§impl Default for ClickStackSelectItemAggfn
impl Default for ClickStackSelectItemAggfn
Source§fn default() -> ClickStackSelectItemAggfn
fn default() -> ClickStackSelectItemAggfn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackSelectItemAggfn
impl<'de> Deserialize<'de> for ClickStackSelectItemAggfn
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 Display for ClickStackSelectItemAggfn
impl Display for ClickStackSelectItemAggfn
Source§impl PartialEq for ClickStackSelectItemAggfn
impl PartialEq for ClickStackSelectItemAggfn
Source§fn eq(&self, other: &ClickStackSelectItemAggfn) -> bool
fn eq(&self, other: &ClickStackSelectItemAggfn) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickStackSelectItemAggfn
Auto Trait Implementations§
impl Freeze for ClickStackSelectItemAggfn
impl RefUnwindSafe for ClickStackSelectItemAggfn
impl Send for ClickStackSelectItemAggfn
impl Sync for ClickStackSelectItemAggfn
impl Unpin for ClickStackSelectItemAggfn
impl UnsafeUnpin for ClickStackSelectItemAggfn
impl UnwindSafe for ClickStackSelectItemAggfn
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