nominal-api 0.1241.0

API bindings for the Nominal platform
Documentation
/// Range end must be greater than range start. Range start may only be undefined if in the first range, or the prior end is defined and less.
/// Range end may only be undefined if in the last range, or the next start is defined and greater. Ranges must be in increasing order.
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    Copy
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct InvalidValueMap {}
impl InvalidValueMap {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
}
impl conjure_error::ErrorType for InvalidValueMap {
    #[inline]
    fn code() -> conjure_error::ErrorCode {
        conjure_error::ErrorCode::InvalidArgument
    }
    #[inline]
    fn name() -> &'static str {
        "Compute:InvalidValueMap"
    }
    #[inline]
    fn safe_args() -> &'static [&'static str] {
        &[]
    }
}