ros2_interfaces_iron/rcss3d_agent_msgs/msg/
flag.rs

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