nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#![allow(deprecated)]
use std::fmt;
use std::str;
/// Identifies where a compute query originated from. Used for observability (perf metrics, ClickHouse log_comment)
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
)]
#[serde(crate = "conjure_object::serde")]
pub enum QuerySource {
    #[serde(rename = "WORKBOOK")]
    Workbook,
    #[serde(rename = "CHECKLIST")]
    Checklist,
    #[serde(rename = "STREAMING_CHECKLIST")]
    StreamingChecklist,
    #[serde(rename = "EXPORT")]
    Export,
    #[serde(rename = "PERSISTENT_COMPUTE")]
    PersistentCompute,
    /// An unknown variant.
    #[serde(untagged)]
    Unknown(Unknown),
}
impl QuerySource {
    /// Returns the string representation of the enum.
    #[inline]
    pub fn as_str(&self) -> &str {
        match self {
            QuerySource::Workbook => "WORKBOOK",
            QuerySource::Checklist => "CHECKLIST",
            QuerySource::StreamingChecklist => "STREAMING_CHECKLIST",
            QuerySource::Export => "EXPORT",
            QuerySource::PersistentCompute => "PERSISTENT_COMPUTE",
            QuerySource::Unknown(v) => &*v,
        }
    }
}
impl fmt::Display for QuerySource {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.as_str(), fmt)
    }
}
impl conjure_object::Plain for QuerySource {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        conjure_object::Plain::fmt(self.as_str(), fmt)
    }
}
impl str::FromStr for QuerySource {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_str(v: &str) -> Result<QuerySource, conjure_object::plain::ParseEnumError> {
        match v {
            "WORKBOOK" => Ok(QuerySource::Workbook),
            "CHECKLIST" => Ok(QuerySource::Checklist),
            "STREAMING_CHECKLIST" => Ok(QuerySource::StreamingChecklist),
            "EXPORT" => Ok(QuerySource::Export),
            "PERSISTENT_COMPUTE" => Ok(QuerySource::PersistentCompute),
            v => v.parse().map(|v| QuerySource::Unknown(Unknown(v))),
        }
    }
}
impl conjure_object::FromPlain for QuerySource {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_plain(
        v: &str,
    ) -> Result<QuerySource, conjure_object::plain::ParseEnumError> {
        v.parse()
    }
}
///An unknown variant of the QuerySource 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)
    }
}