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 AllowedCollisionMatrix {
    pub entry_names: Vec<::std::string::String>,
    pub entry_values: Vec<crate::moveit_msgs::msg::AllowedCollisionEntry>,
    pub default_entry_names: Vec<::std::string::String>,
    pub default_entry_values: Vec<bool>,
}

impl Default for AllowedCollisionMatrix {
    fn default() -> Self {
        AllowedCollisionMatrix {
            entry_names: Vec::new(),
            entry_values: Vec::new(),
            default_entry_names: Vec::new(),
            default_entry_values: Vec::new(),
        }
    }
}

impl ros2_client::Message for AllowedCollisionMatrix {}