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};
use serde_with::serde_as;

#[serde_as]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GeoPoseWithCovariance {
    pub pose: crate::geographic_msgs::msg::GeoPose,
    #[serde_as(as = "[_; 36]")]
    pub covariance: [f64; 36],
}

impl Default for GeoPoseWithCovariance {
    fn default() -> Self {
        GeoPoseWithCovariance {
            pose: crate::geographic_msgs::msg::GeoPose::default(),
            covariance: [0.0; 36],
        }
    }
}

impl ros2_client::Message for GeoPoseWithCovariance {}