#[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 UnresolvedVariables {
#[builder(
default,
map(
key(type = super::super::super::compute::api::VariableName),
value(type = super::UnresolvedVariableLocator)
)
)]
#[serde(
rename = "variables",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
variables: std::collections::BTreeMap<
super::super::super::compute::api::VariableName,
super::UnresolvedVariableLocator,
>,
}
impl UnresolvedVariables {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn variables(
&self,
) -> &std::collections::BTreeMap<
super::super::super::compute::api::VariableName,
super::UnresolvedVariableLocator,
> {
&self.variables
}
}