nominal-api 0.1239.0

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,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash
)]
#[serde(crate = "conjure_object::serde")]
#[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>,
}
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
    }
}