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 InteractiveMarkerUpdate {
    pub server_id: ::std::string::String,
    pub seq_num: u64,
    #[serde(rename = "type")]    pub type_: u8,
    pub markers: Vec<crate::visualization_msgs::msg::InteractiveMarker>,
    pub poses: Vec<crate::visualization_msgs::msg::InteractiveMarkerPose>,
    pub erases: Vec<::std::string::String>,
}

impl InteractiveMarkerUpdate {
    pub const KEEP_ALIVE: u8 = 0;
    pub const UPDATE: u8 = 1;
}

impl Default for InteractiveMarkerUpdate {
    fn default() -> Self {
        InteractiveMarkerUpdate {
            server_id: ::std::string::String::new(),
            seq_num: 0,
            type_: 0,
            markers: Vec::new(),
            poses: Vec::new(),
            erases: Vec::new(),
        }
    }
}

impl ros2_client::Message for InteractiveMarkerUpdate {}