nominal-api-conjure 0.1452.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// Unique resource identifier for an Ingest Automation, a server-side workflow that carries a
/// single upload from resource creation through ingest to a seeded workbook.
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Deserialize,
    conjure_object::serde::Serialize,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    conjure_object::log_safety::derive::LogSafe
)]
#[serde(crate = "conjure_object::serde", transparent)]
pub struct IngestAutomationRid(#[assert_is_safe] pub conjure_object::ResourceIdentifier);
impl std::fmt::Display for IngestAutomationRid {
    fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        std::fmt::Display::fmt(&self.0, fmt)
    }
}
impl conjure_object::Plain for IngestAutomationRid {
    fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        conjure_object::Plain::fmt(&self.0, fmt)
    }
}
impl conjure_object::FromPlain for IngestAutomationRid {
    type Err = <conjure_object::ResourceIdentifier as conjure_object::FromPlain>::Err;
    #[inline]
    fn from_plain(s: &str) -> Result<IngestAutomationRid, Self::Err> {
        conjure_object::FromPlain::from_plain(s).map(IngestAutomationRid)
    }
}
impl std::convert::From<conjure_object::ResourceIdentifier> for IngestAutomationRid {
    #[inline]
    fn from(v: conjure_object::ResourceIdentifier) -> Self {
        IngestAutomationRid(std::convert::From::from(v))
    }
}
impl std::ops::Deref for IngestAutomationRid {
    type Target = conjure_object::ResourceIdentifier;
    #[inline]
    fn deref(&self) -> &conjure_object::ResourceIdentifier {
        &self.0
    }
}
impl std::ops::DerefMut for IngestAutomationRid {
    #[inline]
    fn deref_mut(&mut self) -> &mut conjure_object::ResourceIdentifier {
        &mut self.0
    }
}
impl std::convert::AsRef<conjure_object::ResourceIdentifier> for IngestAutomationRid {
    #[inline]
    fn as_ref(&self) -> &conjure_object::ResourceIdentifier {
        &self.0
    }
}