nominal-api-conjure 0.1343.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// Produces the intersection of the input ranges: the ranges of time covered by
/// every input. For best performance, pass inputs in the order in which they
/// should be evaluated, listing the ranges that are cheapest to compute first.
#[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 IntersectRanges {
    #[builder(default, list(item(type = super::RangeSeries)))]
    #[serde(rename = "inputs", skip_serializing_if = "Vec::is_empty", default)]
    inputs: Vec<super::RangeSeries>,
}
impl IntersectRanges {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn inputs(&self) -> &[super::RangeSeries] {
        &*self.inputs
    }
}