Skip to main content

nominal_api/conjure/objects/ingest/api/
mcap_video_channel_config.rs

1/// Ingest a channel as video. This requires:
2/// * Using the `foxglove.CompressedVideo` schema
3/// * Protobuf representation of the message data
4/// * Messages are in sequential order in the mcap file
5#[derive(
6    Debug,
7    Clone,
8    conjure_object::serde::Serialize,
9    conjure_object::serde::Deserialize,
10    PartialEq,
11    Eq,
12    PartialOrd,
13    Ord,
14    Hash,
15    Copy
16)]
17#[serde(crate = "conjure_object::serde")]
18#[conjure_object::private::staged_builder::staged_builder]
19#[builder(crate = conjure_object::private::staged_builder, update, inline)]
20pub struct McapVideoChannelConfig {}
21impl McapVideoChannelConfig {
22    /// Constructs a new instance of the type.
23    #[inline]
24    pub fn new() -> Self {
25        Self::builder().build()
26    }
27}