ros2_interfaces_rolling/rmf_task_msgs/msg/
alert_response.rs

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