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 AttachedCollisionObject {
    pub link_name: ::std::string::String,
    pub object: crate::moveit_msgs::msg::CollisionObject,
    pub touch_links: Vec<::std::string::String>,
    pub detach_posture: crate::trajectory_msgs::msg::JointTrajectory,
    pub weight: f64,
}

impl Default for AttachedCollisionObject {
    fn default() -> Self {
        AttachedCollisionObject {
            link_name: ::std::string::String::new(),
            object: crate::moveit_msgs::msg::CollisionObject::default(),
            touch_links: Vec::new(),
            detach_posture: crate::trajectory_msgs::msg::JointTrajectory::default(),
            weight: 0.0,
        }
    }
}

impl ros2_client::Message for AttachedCollisionObject {}