#![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 Geo3dDefaultModel {
#[serde(rename = "FICTIONAL_FIGHTER")]
FictionalFighter,
#[serde(rename = "SATELLITE")]
Satellite,
#[serde(rename = "QUADCOPTER")]
Quadcopter,
#[serde(rename = "FIXEDWING")]
Fixedwing,
#[serde(untagged)]
Unknown(Unknown),
}
impl Geo3dDefaultModel {
#[inline]
pub fn as_str(&self) -> &str {
match self {
Geo3dDefaultModel::FictionalFighter => "FICTIONAL_FIGHTER",
Geo3dDefaultModel::Satellite => "SATELLITE",
Geo3dDefaultModel::Quadcopter => "QUADCOPTER",
Geo3dDefaultModel::Fixedwing => "FIXEDWING",
Geo3dDefaultModel::Unknown(v) => &*v,
}
}
}
impl fmt::Display for Geo3dDefaultModel {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(self.as_str(), fmt)
}
}
impl conjure_object::Plain for Geo3dDefaultModel {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
conjure_object::Plain::fmt(self.as_str(), fmt)
}
}
impl str::FromStr for Geo3dDefaultModel {
type Err = conjure_object::plain::ParseEnumError;
#[inline]
fn from_str(
v: &str,
) -> Result<Geo3dDefaultModel, conjure_object::plain::ParseEnumError> {
match v {
"FICTIONAL_FIGHTER" => Ok(Geo3dDefaultModel::FictionalFighter),
"SATELLITE" => Ok(Geo3dDefaultModel::Satellite),
"QUADCOPTER" => Ok(Geo3dDefaultModel::Quadcopter),
"FIXEDWING" => Ok(Geo3dDefaultModel::Fixedwing),
v => v.parse().map(|v| Geo3dDefaultModel::Unknown(Unknown(v))),
}
}
}
impl conjure_object::FromPlain for Geo3dDefaultModel {
type Err = conjure_object::plain::ParseEnumError;
#[inline]
fn from_plain(
v: &str,
) -> Result<Geo3dDefaultModel, conjure_object::plain::ParseEnumError> {
v.parse()
}
}
#[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)
}
}