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 ScheduleQueryParticipants {
    #[serde(rename = "type")]    pub type_: u16,
    pub ids: Vec<u64>,
}

impl ScheduleQueryParticipants {
    pub const ALL: u16 = 1;
    pub const INCLUDE: u16 = 2;
    pub const EXCLUDE: u16 = 3;
}

impl Default for ScheduleQueryParticipants {
    fn default() -> Self {
        ScheduleQueryParticipants {
            type_: 0,
            ids: Vec::new(),
        }
    }
}

impl ros2_client::Message for ScheduleQueryParticipants {}