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 Vibration {
    pub header: crate::std_msgs::msg::Header,
    pub vibration: crate::geometry_msgs::msg::Vector3,
    pub clipping: [f32; 3],
}

impl Default for Vibration {
    fn default() -> Self {
        Vibration {
            header: crate::std_msgs::msg::Header::default(),
            vibration: crate::geometry_msgs::msg::Vector3::default(),
            clipping: [0.0; 3],
        }
    }
}

impl ros2_client::Message for Vibration {}