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