#[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 {
#[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
}
}