ros2-interfaces-rolling 0.0.1

Structs for Messages and Services listed by ROS Index for ROS2 Rolling. Built around the `ros2-client` crate.
Documentation
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct VelocityStamped {
    pub header: crate::std_msgs::msg::Header,
    pub body_frame_id: ::std::string::String,
    pub reference_frame_id: ::std::string::String,
    pub velocity: crate::geometry_msgs::msg::Twist,
}

impl Default for VelocityStamped {
    fn default() -> Self {
        VelocityStamped {
            header: crate::std_msgs::msg::Header::default(),
            body_frame_id: ::std::string::String::new(),
            reference_frame_id: ::std::string::String::new(),
            velocity: crate::geometry_msgs::msg::Twist::default(),
        }
    }
}

impl ros2_client::Message for VelocityStamped {}