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 EntityState {
    pub name: ::std::string::String,
    pub pose: crate::geometry_msgs::msg::Pose,
    pub twist: crate::geometry_msgs::msg::Twist,
    pub reference_frame: ::std::string::String,
}

impl Default for EntityState {
    fn default() -> Self {
        EntityState {
            name: ::std::string::String::new(),
            pose: crate::geometry_msgs::msg::Pose::default(),
            twist: crate::geometry_msgs::msg::Twist::default(),
            reference_frame: ::std::string::String::new(),
        }
    }
}

impl ros2_client::Message for EntityState {}