ros2_interfaces_rolling/geographic_msgs/msg/
key_value.rs

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