nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Timestamps are derived from the mcap file containing the video frames.
#[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 McapTimestampManifest {
    #[builder(
        custom(
            type = super::super::super::super::api::McapChannelLocator,
            convert = Box::new
        )
    )]
    #[serde(rename = "mcapChannelLocator")]
    mcap_channel_locator: Box<super::super::super::super::api::McapChannelLocator>,
}
impl McapTimestampManifest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        mcap_channel_locator: super::super::super::super::api::McapChannelLocator,
    ) -> Self {
        Self::builder().mcap_channel_locator(mcap_channel_locator).build()
    }
    #[inline]
    pub fn mcap_channel_locator(
        &self,
    ) -> &super::super::super::super::api::McapChannelLocator {
        &*self.mcap_channel_locator
    }
}