nominal-api 0.1240.0

API bindings for the Nominal platform
Documentation
/// Returns references to the data ingested from an MCAP file.
#[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 IngestMcapResponse {
    #[builder(default, list(item(type = super::McapIngestionOutput)))]
    #[serde(rename = "outputs", skip_serializing_if = "Vec::is_empty", default)]
    outputs: Vec<super::McapIngestionOutput>,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::AsyncHandle>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "asyncHandle", skip_serializing_if = "Option::is_none", default)]
    async_handle: Option<Box<super::AsyncHandle>>,
}
impl IngestMcapResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn outputs(&self) -> &[super::McapIngestionOutput] {
        &*self.outputs
    }
    #[deprecated(note = "Deprecated")]
    #[inline]
    pub fn async_handle(&self) -> Option<&super::AsyncHandle> {
        self.async_handle.as_ref().map(|o| &**o)
    }
}