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 NegotiationConclusion {
    pub conflict_version: u64,
    pub resolved: bool,
    pub table: Vec<crate::rmf_traffic_msgs::msg::NegotiationKey>,
}

impl Default for NegotiationConclusion {
    fn default() -> Self {
        NegotiationConclusion {
            conflict_version: 0,
            resolved: false,
            table: Vec::new(),
        }
    }
}

impl ros2_client::Message for NegotiationConclusion {}