ros2_interfaces_rolling/rcss3d_agent_msgs/msg/
say.rs

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