nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// One or more function names are invalid.
/// Function names must begin with a letter and can only contain letters, numbers, and underscores.
#[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 {
    /// Constructs a new instance of the type.
    #[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] {
        &[]
    }
}