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