nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Contains a `ComputeNodeResponse` for each applicable grouping along with metadata describing the grouping.
/// All the contained `ComputeNodeResponse`s are guaranteed to be of the same type.
#[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 GroupedComputeNodeResponses {
    #[builder(default, set(item(type = super::GroupedComputeNodeResponse)))]
    #[serde(
        rename = "responses",
        skip_serializing_if = "std::collections::BTreeSet::is_empty",
        default
    )]
    responses: std::collections::BTreeSet<super::GroupedComputeNodeResponse>,
}
impl GroupedComputeNodeResponses {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn responses(
        &self,
    ) -> &std::collections::BTreeSet<super::GroupedComputeNodeResponse> {
        &self.responses
    }
}