ros2_interfaces_humble/soccer_object_msgs/msg/
goalpost_array.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct GoalpostArray {
5    pub posts: Vec<crate::soccer_object_msgs::msg::Goalpost>,
6}
7
8impl Default for GoalpostArray {
9    fn default() -> Self {
10        GoalpostArray {
11            posts: Vec::new(),
12        }
13    }
14}
15
16impl ros2_client::Message for GoalpostArray {}