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 JointStatuses {
    pub statuses: [i32; 25],
}

impl JointStatuses {
    pub const STATUS_NORMAL: i32 = 0;
    pub const STATUS_HOT: i32 = 1;
    pub const STATUS_VERY_HOT: i32 = 2;
    pub const STATUS_CRITICALLY_HOT: i32 = 3;
}

impl Default for JointStatuses {
    fn default() -> Self {
        JointStatuses {
            statuses: [0; 25],
        }
    }
}

impl ros2_client::Message for JointStatuses {}