#[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 VariableNameConflict {
#[builder(default, set(item(type = String, into)))]
#[serde(
rename = "variableName",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
variable_name: std::collections::BTreeSet<String>,
}
impl VariableNameConflict {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn variable_name(&self) -> &std::collections::BTreeSet<String> {
&self.variable_name
}
}
impl conjure_error::ErrorType for VariableNameConflict {
#[inline]
fn code() -> conjure_error::ErrorCode {
conjure_error::ErrorCode::Conflict
}
#[inline]
fn name() -> &'static str {
"Module:VariableNameConflict"
}
#[inline]
fn safe_args() -> &'static [&'static str] {
&[]
}
}