nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Produces a list of ranges for which the threshold condition is satisfied.
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct ThresholdingRanges {
    #[builder(custom(type = super::NumericSeries, convert = Box::new))]
    #[serde(rename = "input")]
    input: Box<super::NumericSeries>,
    #[builder(custom(type = super::DoubleConstant, convert = Box::new))]
    #[serde(rename = "threshold")]
    threshold: Box<super::DoubleConstant>,
    #[serde(rename = "operator")]
    operator: super::ThresholdOperator,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::PersistenceWindowConfiguration>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(
        rename = "persistenceWindowConfiguration",
        skip_serializing_if = "Option::is_none",
        default
    )]
    persistence_window_configuration: Option<Box<super::PersistenceWindowConfiguration>>,
}
impl ThresholdingRanges {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        input: super::NumericSeries,
        threshold: super::DoubleConstant,
        operator: super::ThresholdOperator,
    ) -> Self {
        Self::builder().input(input).threshold(threshold).operator(operator).build()
    }
    #[inline]
    pub fn input(&self) -> &super::NumericSeries {
        &*self.input
    }
    #[inline]
    pub fn threshold(&self) -> &super::DoubleConstant {
        &*self.threshold
    }
    #[inline]
    pub fn operator(&self) -> &super::ThresholdOperator {
        &self.operator
    }
    #[inline]
    pub fn persistence_window_configuration(
        &self,
    ) -> Option<&super::PersistenceWindowConfiguration> {
        self.persistence_window_configuration.as_ref().map(|o| &**o)
    }
}