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 ObjectInformation {
    pub name: ::std::string::String,
    pub ground_truth_mesh: crate::shape_msgs::msg::Mesh,
    pub ground_truth_point_cloud: crate::sensor_msgs::msg::PointCloud2,
}

impl Default for ObjectInformation {
    fn default() -> Self {
        ObjectInformation {
            name: ::std::string::String::new(),
            ground_truth_mesh: crate::shape_msgs::msg::Mesh::default(),
            ground_truth_point_cloud: crate::sensor_msgs::msg::PointCloud2::default(),
        }
    }
}

impl ros2_client::Message for ObjectInformation {}