nominal-api-conjure 0.1346.0

Conjure HTTP API bindings for the Nominal platform
Documentation
/// Manifest file produced by containerized extractors to describe their outputs.
/// This is written as manifest.json in the OUTPUT_DIR by the container.
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct ExtractorManifest {
    #[builder(default, list(item(type = super::ManifestOutput)))]
    #[serde(rename = "outputs", skip_serializing_if = "Vec::is_empty", default)]
    outputs: Vec<super::ManifestOutput>,
    #[builder(default, into)]
    #[serde(rename = "videoOutputs", skip_serializing_if = "Option::is_none", default)]
    video_outputs: Option<Vec<super::ManifestVideoOutput>>,
}
impl ExtractorManifest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    /// List of output files produced by the extractor
    #[inline]
    pub fn outputs(&self) -> &[super::ManifestOutput] {
        &*self.outputs
    }
    /// Video files produced by the extractor.
    #[inline]
    pub fn video_outputs(&self) -> Option<&[super::ManifestVideoOutput]> {
        self.video_outputs.as_ref().map(|o| &**o)
    }
}