/// Ingest a channel as video. This requires:
/// * Using the `foxglove.CompressedVideo` schema
/// * Protobuf representation of the message data
/// * Messages are in sequential order in the mcap file
#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
Copy
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct McapVideoChannelConfig {}
impl McapVideoChannelConfig {
/// Constructs a new instance of the type.
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
}