ros2_interfaces_humble/plotjuggler_msgs/msg/
data_points.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct DataPoints {
5    pub dictionary_uuid: u32,
6    pub samples: Vec<crate::plotjuggler_msgs::msg::DataPoint>,
7}
8
9impl Default for DataPoints {
10    fn default() -> Self {
11        DataPoints {
12            dictionary_uuid: 0,
13            samples: Vec::new(),
14        }
15    }
16}
17
18impl ros2_client::Message for DataPoints {}