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 SubmapEntry {
    pub trajectory_id: i32,
    pub submap_index: i32,
    pub submap_version: i32,
    pub pose: crate::geometry_msgs::msg::Pose,
    pub is_frozen: bool,
}

impl Default for SubmapEntry {
    fn default() -> Self {
        SubmapEntry {
            trajectory_id: 0,
            submap_index: 0,
            submap_version: 0,
            pose: crate::geometry_msgs::msg::Pose::default(),
            is_frozen: false,
        }
    }
}

impl ros2_client::Message for SubmapEntry {}