nominal-api-conjure 0.1436.0

Conjure HTTP API bindings for the Nominal platform
Documentation
#![allow(deprecated)]
use std::fmt;
use std::str;
/// How the image is scaled inside its container. CONTAIN fits the
/// image without cropping; COVER fills the container, cropping if needed.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
    conjure_object::log_safety::derive::LogSafe
)]
#[serde(crate = "conjure_object::serde")]
pub enum ImageObjectFit {
    #[serde(rename = "CONTAIN")]
    Contain,
    #[serde(rename = "COVER")]
    Cover,
    /// An unknown variant.
    #[serde(untagged)]
    Unknown(Unknown),
}
impl ImageObjectFit {
    /// Returns the string representation of the enum.
    #[inline]
    pub fn as_str(&self) -> &str {
        match self {
            ImageObjectFit::Contain => "CONTAIN",
            ImageObjectFit::Cover => "COVER",
            ImageObjectFit::Unknown(v) => &*v,
        }
    }
}
impl fmt::Display for ImageObjectFit {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.as_str(), fmt)
    }
}
impl conjure_object::Plain for ImageObjectFit {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        conjure_object::Plain::fmt(self.as_str(), fmt)
    }
}
impl str::FromStr for ImageObjectFit {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_str(
        v: &str,
    ) -> Result<ImageObjectFit, conjure_object::plain::ParseEnumError> {
        match v {
            "CONTAIN" => Ok(ImageObjectFit::Contain),
            "COVER" => Ok(ImageObjectFit::Cover),
            v => v.parse().map(|v| ImageObjectFit::Unknown(Unknown(v))),
        }
    }
}
impl conjure_object::FromPlain for ImageObjectFit {
    type Err = conjure_object::plain::ParseEnumError;
    #[inline]
    fn from_plain(
        v: &str,
    ) -> Result<ImageObjectFit, conjure_object::plain::ParseEnumError> {
        v.parse()
    }
}
///An unknown variant of the ImageObjectFit enum.
#[derive(
    Debug,
    Clone,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
    conjure_object::log_safety::derive::LogSafe,
)]
#[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)
    }
}