nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#![allow(deprecated)]
use std::fmt;
use std::str;
/// DEPRECATED. Use `NumericAggregationOperator` instead.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde")]
pub enum NumericAggregationFunction {
    #[serde(rename = "SUM")]
    Sum,
    #[serde(rename = "MEAN")]
    Mean,
    #[serde(rename = "MIN")]
    Min,
    #[serde(rename = "MAX")]
    Max,
    #[serde(rename = "COUNT")]
    Count,
    #[serde(rename = "STANDARD_DEVIATION")]
    StandardDeviation,
    #[serde(rename = "ROOT_MEAN_SQUARE")]
    RootMeanSquare,
    /// An unknown variant.
    #[serde(untagged)]
    Unknown(Unknown),
}
impl NumericAggregationFunction {
    /// Returns the string representation of the enum.
    #[inline]
    pub fn as_str(&self) -> &str {
        match self {
            NumericAggregationFunction::Sum => "SUM",
            NumericAggregationFunction::Mean => "MEAN",
            NumericAggregationFunction::Min => "MIN",
            NumericAggregationFunction::Max => "MAX",
            NumericAggregationFunction::Count => "COUNT",
            NumericAggregationFunction::StandardDeviation => "STANDARD_DEVIATION",
            NumericAggregationFunction::RootMeanSquare => "ROOT_MEAN_SQUARE",
            NumericAggregationFunction::Unknown(v) => &*v,
        }
    }
}
impl fmt::Display for NumericAggregationFunction {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.as_str(), fmt)
    }
}
impl conjure_object::Plain for NumericAggregationFunction {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        conjure_object::Plain::fmt(self.as_str(), fmt)
    }
}
impl str::FromStr for NumericAggregationFunction {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_str(
        v: &str,
    ) -> Result<NumericAggregationFunction, conjure_object::plain::ParseEnumError> {
        match v {
            "SUM" => Ok(NumericAggregationFunction::Sum),
            "MEAN" => Ok(NumericAggregationFunction::Mean),
            "MIN" => Ok(NumericAggregationFunction::Min),
            "MAX" => Ok(NumericAggregationFunction::Max),
            "COUNT" => Ok(NumericAggregationFunction::Count),
            "STANDARD_DEVIATION" => Ok(NumericAggregationFunction::StandardDeviation),
            "ROOT_MEAN_SQUARE" => Ok(NumericAggregationFunction::RootMeanSquare),
            v => v.parse().map(|v| NumericAggregationFunction::Unknown(Unknown(v))),
        }
    }
}
impl conjure_object::FromPlain for NumericAggregationFunction {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_plain(
        v: &str,
    ) -> Result<NumericAggregationFunction, conjure_object::plain::ParseEnumError> {
        v.parse()
    }
}
///An unknown variant of the NumericAggregationFunction enum.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde", transparent)]
pub struct Unknown(conjure_object::private::Variant);
impl std::ops::Deref for Unknown {
    type Target = str;
    #[inline]
    fn deref(&self) -> &str {
        &self.0
    }
}
impl fmt::Display for Unknown {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Display::fmt(&self.0, fmt)
    }
}