#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct WorkbookContext {
#[builder(
default,
map(
key(type = super::super::super::compute::api::VariableName),
value(type = super::VariableLocator)
)
)]
#[serde(
rename = "variables",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
variables: std::collections::BTreeMap<
super::super::super::compute::api::VariableName,
super::VariableLocator,
>,
}
impl WorkbookContext {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn variables(
&self,
) -> &std::collections::BTreeMap<
super::super::super::compute::api::VariableName,
super::VariableLocator,
> {
&self.variables
}
}