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 ExtendedLaserScan {
    pub laser_scan: crate::sensor_msgs::msg::LaserScan,
    pub reflektor_status: Vec<bool>,
    pub reflektor_median: Vec<bool>,
    pub intrusion: Vec<bool>,
}

impl Default for ExtendedLaserScan {
    fn default() -> Self {
        ExtendedLaserScan {
            laser_scan: crate::sensor_msgs::msg::LaserScan::default(),
            reflektor_status: Vec::new(),
            reflektor_median: Vec::new(),
            intrusion: Vec::new(),
        }
    }
}

impl ros2_client::Message for ExtendedLaserScan {}