nominal-api-conjure 0.1362.0

Conjure HTTP API bindings for the Nominal platform
Documentation
#![allow(deprecated)]
use std::fmt;
use std::str;
/// The storage engine a series is read from. A dataset written to both Iceberg and ClickHouse can be read
/// from either engine, and a series may name the one it wants; every other dataset is readable only from the
/// single engine backing it, so naming the other one is an invalid request. When unset, the engine configured
/// for the caller is used.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde")]
pub enum SeriesStorage {
    #[serde(rename = "ICEBERG")]
    Iceberg,
    #[serde(rename = "CLICKHOUSE")]
    Clickhouse,
    /// An unknown variant.
    #[serde(untagged)]
    Unknown(Unknown),
}
impl SeriesStorage {
    /// Returns the string representation of the enum.
    #[inline]
    pub fn as_str(&self) -> &str {
        match self {
            SeriesStorage::Iceberg => "ICEBERG",
            SeriesStorage::Clickhouse => "CLICKHOUSE",
            SeriesStorage::Unknown(v) => &*v,
        }
    }
}
impl fmt::Display for SeriesStorage {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.as_str(), fmt)
    }
}
impl conjure_object::Plain for SeriesStorage {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        conjure_object::Plain::fmt(self.as_str(), fmt)
    }
}
impl str::FromStr for SeriesStorage {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_str(
        v: &str,
    ) -> Result<SeriesStorage, conjure_object::plain::ParseEnumError> {
        match v {
            "ICEBERG" => Ok(SeriesStorage::Iceberg),
            "CLICKHOUSE" => Ok(SeriesStorage::Clickhouse),
            v => v.parse().map(|v| SeriesStorage::Unknown(Unknown(v))),
        }
    }
}
impl conjure_object::FromPlain for SeriesStorage {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_plain(
        v: &str,
    ) -> Result<SeriesStorage, conjure_object::plain::ParseEnumError> {
        v.parse()
    }
}
///An unknown variant of the SeriesStorage 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)
    }
}