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 MapMatching {
    pub status: u8,
}

impl MapMatching {
    pub const MAP_MATCHING_NONE: u8 = 0;
    pub const MAP_MATCHING_VALID_NOT_USED: u8 = 1;
    pub const MAP_MATCHING_VALID_AND_USED: u8 = 2;
    pub const MAP_MATCHING_VALID_DEAD_RECKONING: u8 = 3;
}

impl Default for MapMatching {
    fn default() -> Self {
        MapMatching {
            status: 0,
        }
    }
}

impl ros2_client::Message for MapMatching {}