ros2-interfaces-iron 0.0.2

Structs for Messages and Services listed by ROS Index for ROS2 Iron. Built around the `ros2-client` crate.
Documentation
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Vision {
    pub ball: Vec<crate::rcss3d_agent_msgs::msg::Ball>,
    pub field_lines: Vec<crate::rcss3d_agent_msgs::msg::FieldLine>,
    pub flags: Vec<crate::rcss3d_agent_msgs::msg::Flag>,
    pub goalposts: Vec<crate::rcss3d_agent_msgs::msg::Goalpost>,
    pub players: Vec<crate::rcss3d_agent_msgs::msg::Player>,
}

impl Default for Vision {
    fn default() -> Self {
        Vision {
            ball: Vec::new(),
            field_lines: Vec::new(),
            flags: Vec::new(),
            goalposts: Vec::new(),
            players: Vec::new(),
        }
    }
}

impl ros2_client::Message for Vision {}