ros2_interfaces_rolling/plotjuggler_msgs/msg/
data_points.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DataPoints {
    pub dictionary_uuid: u32,
    pub samples: Vec<crate::plotjuggler_msgs::msg::DataPoint>,
}

impl Default for DataPoints {
    fn default() -> Self {
        DataPoints {
            dictionary_uuid: 0,
            samples: Vec::new(),
        }
    }
}

impl ros2_client::Message for DataPoints {}