ros2_interfaces_humble/plotjuggler_msgs/msg/
dictionary.rs

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