#![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 TextAlignment {
#[serde(rename = "START")]
Start,
#[serde(rename = "END")]
End,
#[serde(rename = "CENTER")]
Center,
#[serde(rename = "JUSTIFY")]
Justify,
#[serde(untagged)]
Unknown(Unknown),
}
impl TextAlignment {
#[inline]
pub fn as_str(&self) -> &str {
match self {
TextAlignment::Start => "START",
TextAlignment::End => "END",
TextAlignment::Center => "CENTER",
TextAlignment::Justify => "JUSTIFY",
TextAlignment::Unknown(v) => &*v,
}
}
}
impl fmt::Display for TextAlignment {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(self.as_str(), fmt)
}
}
impl conjure_object::Plain for TextAlignment {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
conjure_object::Plain::fmt(self.as_str(), fmt)
}
}
impl str::FromStr for TextAlignment {
type Err = conjure_object::plain::ParseEnumError;
#[inline]
fn from_str(
v: &str,
) -> Result<TextAlignment, conjure_object::plain::ParseEnumError> {
match v {
"START" => Ok(TextAlignment::Start),
"END" => Ok(TextAlignment::End),
"CENTER" => Ok(TextAlignment::Center),
"JUSTIFY" => Ok(TextAlignment::Justify),
v => v.parse().map(|v| TextAlignment::Unknown(Unknown(v))),
}
}
}
impl conjure_object::FromPlain for TextAlignment {
type Err = conjure_object::plain::ParseEnumError;
#[inline]
fn from_plain(
v: &str,
) -> Result<TextAlignment, 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)
}
}