ros2-interfaces-rolling 0.0.2

Structs for Messages and Services listed by ROS Index for ROS2 Rolling. Built around the `ros2-client` crate.
Documentation
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GeoJSONProperties {
    pub id: u32,
    #[serde(rename = "type")]    pub type_: u32,
    pub enflation_radius: Vec<f64>,
    pub bondary_radius: Vec<f64>,
}

impl Default for GeoJSONProperties {
    fn default() -> Self {
        GeoJSONProperties {
            id: 0,
            type_: 0,
            enflation_radius: Vec::new(),
            bondary_radius: Vec::new(),
        }
    }
}

impl ros2_client::Message for GeoJSONProperties {}