nominal-api-conjure 0.1323.0

Conjure HTTP API bindings for the Nominal platform
Documentation
#![allow(deprecated)]
use std::fmt;
use std::str;
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde")]
pub enum Geo3dModelAxis {
    #[serde(rename = "X")]
    X,
    #[serde(rename = "Y")]
    Y,
    #[serde(rename = "Z")]
    Z,
    #[serde(rename = "NEG_X")]
    NegX,
    #[serde(rename = "NEG_Y")]
    NegY,
    #[serde(rename = "NEG_Z")]
    NegZ,
    /// An unknown variant.
    #[serde(untagged)]
    Unknown(Unknown),
}
impl Geo3dModelAxis {
    /// Returns the string representation of the enum.
    #[inline]
    pub fn as_str(&self) -> &str {
        match self {
            Geo3dModelAxis::X => "X",
            Geo3dModelAxis::Y => "Y",
            Geo3dModelAxis::Z => "Z",
            Geo3dModelAxis::NegX => "NEG_X",
            Geo3dModelAxis::NegY => "NEG_Y",
            Geo3dModelAxis::NegZ => "NEG_Z",
            Geo3dModelAxis::Unknown(v) => &*v,
        }
    }
}
impl fmt::Display for Geo3dModelAxis {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.as_str(), fmt)
    }
}
impl conjure_object::Plain for Geo3dModelAxis {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        conjure_object::Plain::fmt(self.as_str(), fmt)
    }
}
impl str::FromStr for Geo3dModelAxis {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_str(
        v: &str,
    ) -> Result<Geo3dModelAxis, conjure_object::plain::ParseEnumError> {
        match v {
            "X" => Ok(Geo3dModelAxis::X),
            "Y" => Ok(Geo3dModelAxis::Y),
            "Z" => Ok(Geo3dModelAxis::Z),
            "NEG_X" => Ok(Geo3dModelAxis::NegX),
            "NEG_Y" => Ok(Geo3dModelAxis::NegY),
            "NEG_Z" => Ok(Geo3dModelAxis::NegZ),
            v => v.parse().map(|v| Geo3dModelAxis::Unknown(Unknown(v))),
        }
    }
}
impl conjure_object::FromPlain for Geo3dModelAxis {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_plain(
        v: &str,
    ) -> Result<Geo3dModelAxis, conjure_object::plain::ParseEnumError> {
        v.parse()
    }
}
///An unknown variant of the Geo3dModelAxis enum.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde", transparent)]
pub struct Unknown(conjure_object::private::Variant);
impl std::ops::Deref for Unknown {
    type Target = str;
    #[inline]
    fn deref(&self) -> &str {
        &self.0
    }
}
impl fmt::Display for Unknown {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Display::fmt(&self.0, fmt)
    }
}