nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Combines multiple log series together and outputs a single series. The strategy to merge input values with the
/// same timestamp together is specified in the operation field.
#[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 LogUnionSeries {
    #[builder(default, list(item(type = super::LogSeries)))]
    #[serde(rename = "input", skip_serializing_if = "Vec::is_empty", default)]
    input: Vec<super::LogSeries>,
    #[serde(rename = "operation")]
    operation: super::LogUnionOperation,
}
impl LogUnionSeries {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(operation: super::LogUnionOperation) -> Self {
        Self::builder().operation(operation).build()
    }
    #[inline]
    pub fn input(&self) -> &[super::LogSeries] {
        &*self.input
    }
    /// The strategy to merge points with duplicate timestamps.
    #[inline]
    pub fn operation(&self) -> &super::LogUnionOperation {
        &self.operation
    }
}