pub enum AggregationMetricFunction {
Sum,
}Expand description
The aggregation function to apply.
JSON schema
{
"description": "The aggregation function to apply.",
"type": "string",
"enum": [
"sum"
]
}Variants§
Sum
Trait Implementations§
Source§impl Clone for AggregationMetricFunction
impl Clone for AggregationMetricFunction
Source§fn clone(&self) -> AggregationMetricFunction
fn clone(&self) -> AggregationMetricFunction
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 moreimpl Copy for AggregationMetricFunction
Source§impl Debug for AggregationMetricFunction
impl Debug for AggregationMetricFunction
Source§impl<'de> Deserialize<'de> for AggregationMetricFunction
impl<'de> Deserialize<'de> for AggregationMetricFunction
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 AggregationMetricFunction
impl Display for AggregationMetricFunction
impl Eq for AggregationMetricFunction
Source§impl From<&AggregationMetricFunction> for AggregationMetricFunction
impl From<&AggregationMetricFunction> for AggregationMetricFunction
Source§fn from(value: &AggregationMetricFunction) -> Self
fn from(value: &AggregationMetricFunction) -> Self
Converts to this type from the input type.
Source§impl FromStr for AggregationMetricFunction
impl FromStr for AggregationMetricFunction
Source§impl Hash for AggregationMetricFunction
impl Hash for AggregationMetricFunction
Source§impl Ord for AggregationMetricFunction
impl Ord for AggregationMetricFunction
Source§fn cmp(&self, other: &AggregationMetricFunction) -> Ordering
fn cmp(&self, other: &AggregationMetricFunction) -> Ordering
1.21.0 (const: unstable) · 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 AggregationMetricFunction
impl PartialEq for AggregationMetricFunction
Source§fn eq(&self, other: &AggregationMetricFunction) -> bool
fn eq(&self, other: &AggregationMetricFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AggregationMetricFunction
impl PartialOrd for AggregationMetricFunction
impl StructuralPartialEq for AggregationMetricFunction
Source§impl TryFrom<&String> for AggregationMetricFunction
impl TryFrom<&String> for AggregationMetricFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AggregationMetricFunction
impl TryFrom<&str> for AggregationMetricFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AggregationMetricFunction
impl TryFrom<String> for AggregationMetricFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for AggregationMetricFunction
impl RefUnwindSafe for AggregationMetricFunction
impl Send for AggregationMetricFunction
impl Sync for AggregationMetricFunction
impl Unpin for AggregationMetricFunction
impl UnsafeUnpin for AggregationMetricFunction
impl UnwindSafe for AggregationMetricFunction
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