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 GeoJSON {
    pub header: crate::std_msgs::msg::Header,
    #[serde(rename = "type")]    pub type_: ::std::string::String,
    pub features: Vec<crate::tuw_geo_msgs::msg::GeoJSONFeature>,
}

impl Default for GeoJSON {
    fn default() -> Self {
        GeoJSON {
            header: crate::std_msgs::msg::Header::default(),
            type_: ::std::string::String::new(),
            features: Vec::new(),
        }
    }
}

impl ros2_client::Message for GeoJSON {}