#[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 CheckContext {
#[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,
>,
#[builder(default, into)]
#[serde(
rename = "subFunctionVariables",
skip_serializing_if = "Option::is_none",
default
)]
sub_function_variables: Option<
std::collections::BTreeMap<
super::super::super::compute::api::FunctionReference,
super::CheckContext,
>,
>,
}
impl CheckContext {
#[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
}
#[deprecated(
note = "This field is deprecated and will be removed in a future version.\n"
)]
#[inline]
pub fn sub_function_variables(
&self,
) -> Option<
&std::collections::BTreeMap<
super::super::super::compute::api::FunctionReference,
super::CheckContext,
>,
> {
self.sub_function_variables.as_ref().map(|o| &*o)
}
}