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 Action {
    pub name: ::std::string::String,
    pub parameters: Vec<crate::plansys2_msgs::msg::Param>,
    pub preconditions: crate::plansys2_msgs::msg::Tree,
    pub effects: crate::plansys2_msgs::msg::Tree,
}

impl Default for Action {
    fn default() -> Self {
        Action {
            name: ::std::string::String::new(),
            parameters: Vec::new(),
            preconditions: crate::plansys2_msgs::msg::Tree::default(),
            effects: crate::plansys2_msgs::msg::Tree::default(),
        }
    }
}

impl ros2_client::Message for Action {}